summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-ifunc/pr23169b.c
blob: 99790d4547bbe2a09adc56b453642b20f3aadb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>

extern int (*func_p) (void);
extern int func (void);
extern void foo (void);


void
bar (void)
{
  if (func_p != &func || func_p () != 0xbadbeef)
    __builtin_abort ();
}

int
main ()
{
  func_p = &func;
  foo ();
  bar ();
  printf ("PASS\n");
  return 0;
}