From f350fc2e37d79119afa73361f331b8be1174cf40 Mon Sep 17 00:00:00 2001 From: Christophe Lyon Date: Tue, 20 Mar 2018 10:56:02 +0100 Subject: [PATCH] [ARM] FDPIC: Fix ld testcase not to conflict with uclibc's includes. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 2018-04-25 Christophe Lyon Mickaël Guêné ld/ * testsuite/ld-elf/pr2404b.c (main): Rename time variable into time1. --- ld/ChangeLog | 6 ++++++ ld/testsuite/ld-elf/pr2404b.c | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 30de4cb..07f1723 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,6 +1,12 @@ 2018-04-25 Christophe Lyon Mickaël Guêné + * testsuite/ld-elf/pr2404b.c (main): Rename time variable into + time1. + +2018-04-25 Christophe Lyon + Mickaël Guêné + * scripttempl/elf.sc: Define __tdata_start for .tdata section. 2018-04-25 Christophe Lyon diff --git a/ld/testsuite/ld-elf/pr2404b.c b/ld/testsuite/ld-elf/pr2404b.c index 5f0f7b4..4bbc2b1 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; -- 2.7.4