Automatic date update in version.in
[binutils-gdb.git] / ld / testsuite / ld-plugin / pr15323a.c
blob9c38948f8d4cc29074ad58ec46c91a2efaed873c
1 #include <stdio.h>
3 int x;
4 int y;
6 __attribute__((weak))
7 void foobar (void) { y++; x++; }
9 int main (void)
11 foobar ();
12 if (y == 0)
14 if (x == -1)
15 printf ("OK\n");
17 else
19 if (x == 1)
20 printf ("OK\n");
22 return 0;