Properly handle common symbol and weak function
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / pr9676-1.c
1 extern int foo (void) __attribute__((section (".gnu.linkonce.t.1"), weak));
2
3 int
4 foo (void)
5 {
6 return 1;
7 }
8
9 extern int foo2 (void);
10
11 int
12 bar (void)
13 {
14 return foo2 ();
15 }
This page took 0.031286 seconds and 4 git commands to generate.