binutils-gdb/ld/testsuite/ld-pie/weakundef.c
H.J. Lu a10e6b21d4 2006-01-27 H.J. Lu <hongjiu.lu@intel.com>
PR ld/2218
	* ld-pie/pie.exp: New file.
	* ld-pie/weakundef.c: Likewise.
	* ld-pie/weakundef.out: Likewise.

	* lib/ld-lib.exp (run_ld_link_exec_tests): Fix nesting. Support
	building PIE and shared library.
2006-01-27 14:32:04 +00:00

16 lines
200 B
C

#include <stdio.h>
#pragma weak undef_func
extern int undef_func (void);
int (*ptr_to_func)(void) = undef_func;
int
main (void)
{
if (ptr_to_func == NULL)
printf ("PASSED\n");
return 0;
}