mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 14:39:09 +08:00
[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:

committed by
Christophe Lyon

parent
fac7bd6475
commit
f350fc2e37
@ -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>
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Reference in New Issue
Block a user