Stop generating GNU build notes for linkonce sections.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-pie / weakundef.c
CommitLineData
a10e6b21
L
1#include <stdio.h>
2
3#pragma weak undef_func
4
5extern int undef_func (void);
6int (*ptr_to_func)(void) = undef_func;
7
8int
9main (void)
10{
11 if (ptr_to_func == NULL)
12 printf ("PASSED\n");
13
14 return 0;
15}
This page took 0.520677 seconds and 4 git commands to generate.