[gdb/tui] Introduce translate_acs
[binutils-gdb.git] / gold / testsuite / weak_as_needed_a.c
blob2e4ff8f22805794565732a41ef809292b4282dce
1 extern void bar(void) __attribute__ (( weak ));
2 extern void t4(void);
4 void foo(void);
6 void foo(void)
8 bar();
9 t4();