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

extern int a7(void);

int
a0(void)
{
  return 0;
}

int
main()
{
  if (a7() == 7)
    {
      printf ("PASS\n");
      return 0;
    }
  return 1;
}