binutils-gdb/ld/testsuite/ld-plugin/pr24486b.c

9 lines
90 B
C

extern void bar (void) __attribute__((weak));
void
foo (void)
{
if (bar)
bar ();
}