ld: Xfail pr20995 and pr20995-2 for tic6x-*-*
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / pr23161b.c
CommitLineData
fd161d86
AM
1static char *_edata_p;
2static char *_end_p;
3static char *__bss_start_p;
4extern char *_end;
5extern char *_edata;
6extern char *__bss_start;
7
8extern int foo (void);
9
10void
11bar (void)
12{
13 _edata_p = (char*) &_edata;
14 _end_p = (char*) &_end;
15 __bss_start_p = (char*) &__bss_start;
16}
17
18void
19_start ()
20{
21 bar ();
22 foo ();
23}
This page took 0.120507 seconds and 4 git commands to generate.