blob: f09de0e12a1d13f4cc3e98044f2b5a76d13095c1 [file] [log] [blame]
/* Test global variable initialized to hidden STT_GNU_IFUNC symbol. */
extern void foo (void);
void (*f) (void) = &foo;
extern void bar (void);
void
bar (void)
{
f ();
}