From: Christophe Lyon Date: Tue, 20 Mar 2018 09:56:02 +0000 (+0100) Subject: [ARM] FDPIC: Fix ld testcase not to conflict with uclibc's includes. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a67f87999e8ccd591239d7c7d9ef8ad3defdc6a0;p=thirdparty%2Fbinutils-gdb.git [ARM] FDPIC: Fix ld testcase not to conflict with uclibc's includes. 2018-XX-XX Christophe Lyon Mickaël Guêné ld * testsuite/ld-elf/pr2404b.c (main): Rename time variable into time1. --- diff --git a/ld/testsuite/ld-elf/pr2404b.c b/ld/testsuite/ld-elf/pr2404b.c index 5f0f7b4c874..4bbc2b12931 100644 --- a/ld/testsuite/ld-elf/pr2404b.c +++ b/ld/testsuite/ld-elf/pr2404b.c @@ -3,7 +3,7 @@ extern int bar (void); int times = -1; -int time; +int time1; int main () @@ -12,9 +12,9 @@ main () times = 20; printf ("times: %d\n", times); - printf ("time: %d\n", time); - time = 10; - printf ("time: %d\n", time); + printf ("time1: %d\n", time1); + time1 = 10; + printf ("time: %d\n", time1); bar (); return 0;