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