gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gold / testsuite / ifuncvar3.c
1 /* Test global variable initialized to hidden STT_GNU_IFUNC symbol. */
2
3 #include <assert.h>
4
5 extern void bar (void);
6 extern int didit;
7
8 int
9 main (void)
10 {
11 bar ();
12 assert (didit == 1);
13 return 0;
14 }
This page took 0.034442 seconds and 4 git commands to generate.