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

int x;

__attribute__((weak))
void foobar (void) { x++; }

int main (void)
{
  foobar ();
  if (x == -1)
    printf ("OK\n");
  return 0;
}