summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-shared
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2008-02-14 20:23:27 +0000
committerH.J. Lu <hjl@lucon.org>2008-02-14 20:23:27 +0000
commit8c3409e621c0ca135468cddaa46c54e5e8735c84 (patch)
treeeca1863b44037803ac83c569420dc0506499d32b /ld/testsuite/ld-shared
parentc4c966231a4fca87439f8f6016228d9293b66960 (diff)
downloadbinutils-redhat-8c3409e621c0ca135468cddaa46c54e5e8735c84.tar.gz
2008-02-14 H.J. Lu <hongjiu.lu@intel.com>
* ld-shared/sh1.c (shlib_overriddencall2): Moved to ... * ld-shared/sh2.c (shlib_overriddencall2): Here. New.
Diffstat (limited to 'ld/testsuite/ld-shared')
-rw-r--r--ld/testsuite/ld-shared/sh1.c6
-rw-r--r--ld/testsuite/ld-shared/sh2.c8
2 files changed, 8 insertions, 6 deletions
diff --git a/ld/testsuite/ld-shared/sh1.c b/ld/testsuite/ld-shared/sh1.c
index 20f183c264..c8e523249a 100644
--- a/ld/testsuite/ld-shared/sh1.c
+++ b/ld/testsuite/ld-shared/sh1.c
@@ -71,12 +71,6 @@ shlib_shlibcall2 ()
{
return shlib_overriddencall2 ();
}
-
-int
-shlib_overriddencall2 ()
-{
- return 7;
-}
#endif
/* This function calls a function defined by the main program. */
diff --git a/ld/testsuite/ld-shared/sh2.c b/ld/testsuite/ld-shared/sh2.c
index 013a4e0994..7cd1db38ee 100644
--- a/ld/testsuite/ld-shared/sh2.c
+++ b/ld/testsuite/ld-shared/sh2.c
@@ -12,3 +12,11 @@ shlib_shlibcalled ()
{
return 5;
}
+
+#ifndef XCOFF_TEST
+int
+shlib_overriddencall2 ()
+{
+ return 7;
+}
+#endif