Add tests for non-object IR file
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / pr15323a.c
1 #include <stdio.h>
2
3 int x;
4
5 __attribute__((weak))
6 void foobar (void) { x++; }
7
8 int main (void)
9 {
10 foobar ();
11 if (x == -1)
12 printf ("OK\n");
13 return 0;
14 }
This page took 0.028562 seconds and 4 git commands to generate.