[ARM] FDPIC: Fix ld testcase not to conflict with uclibc's includes.

2018-04-25  Christophe Lyon  <christophe.lyon@st.com>
	Mickaël Guêné  <mickael.guene@st.com>

	ld/
	* testsuite/ld-elf/pr2404b.c (main): Rename time variable into
	time1.
This commit is contained in:
Christophe Lyon
2018-03-20 10:56:02 +01:00
committed by Christophe Lyon
parent fac7bd6475
commit f350fc2e37
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2018-04-25 Christophe Lyon <christophe.lyon@st.com>
Mickaël Guêné <mickael.guene@st.com>
* testsuite/ld-elf/pr2404b.c (main): Rename time variable into
time1.
2018-04-25 Christophe Lyon <christophe.lyon@st.com> 2018-04-25 Christophe Lyon <christophe.lyon@st.com>
Mickaël Guêné <mickael.guene@st.com> Mickaël Guêné <mickael.guene@st.com>

View File

@ -3,7 +3,7 @@
extern int bar (void); extern int bar (void);
int times = -1; int times = -1;
int time; int time1;
int int
main () main ()
@ -12,9 +12,9 @@ main ()
times = 20; times = 20;
printf ("times: %d\n", times); printf ("times: %d\n", times);
printf ("time: %d\n", time); printf ("time1: %d\n", time1);
time = 10; time1 = 10;
printf ("time: %d\n", time); printf ("time: %d\n", time1);
bar (); bar ();
return 0; return 0;