summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-plugin/pr21382a.c
blob: 09b9d758d3ecc7a98fca7e7b795e66c73995a582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>

extern void y (void);

void
x (void)
{
  printf ("PASS\n");
}


int
main (void)
{
  y ();
  return 0;
}