summaryrefslogtreecommitdiffstats
path: root/binutils-2.24/ld/testsuite/ld-plugin/lto-14a.c
blob: d61437b1d1b63928bdc4bf7fcefb178b0ace1279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

extern void foo(void);
extern int i;

int main()
{
  foo();
  if (i == 0x1234)
    printf ("PASS\n");
  return 0;
}