Re: lto-18 test
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / pr26262a.c
1 #include <stdio.h>
2
3 int counter;
4 extern void foo (void);
5 extern void xxx (void);
6
7 void
8 bar (void)
9 {
10 }
11
12 int
13 main(void)
14 {
15 bar ();
16 foo ();
17 xxx ();
18 if (counter == 1)
19 printf ("PASS\n");
20 return 0;
21 }
This page took 0.029318 seconds and 4 git commands to generate.