Some get_last_target_status tweaks
[deliverable/binutils-gdb.git] / gold / testsuite / defsym_test.c
1 #include <stdio.h>
2
3 void foo (void) __attribute__ ((noinline, visibility ("hidden")));
4
5 void foo (void) {
6 printf("foo called.\n");
7 }
8
9 void bar(void);
10
11 int main(void) {
12 foo();
13 bar();
14 return 0;
15 }
This page took 0.031288 seconds and 4 git commands to generate.