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