diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index bc6f809863..673f240ca6 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-02-14 H.J. Lu + + * ld-shared/sh1.c (shlib_overriddencall2): Moved to ... + * ld-shared/sh2.c (shlib_overriddencall2): Here. New. + 2008-02-07 Alan Modra * ld-spu/ovl.d: Update. 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