ld/testsuite: XFAIL pr20995-2 on aarch64*-*-elf*
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / pr22502a.c
CommitLineData
a83ef4d1
L
1#include <stdio.h>
2
3volatile int x;
4extern void abort ();
5
6__attribute__((weak))
7void foobar (void) { x++; }
8
9int main (void)
10{
11 foobar ();
12 if (x != -1)
13 abort ();
14 printf ("PASS\n");
15 return 0;
16}
This page took 0.036174 seconds and 4 git commands to generate.