old-cross-binutils/ld/testsuite/ld-elfweak/bar1a.c
H.J. Lu 0c52a746f7 2001-09-14 H.J. Lu <hjl@gnu.org>
* ld-elfweak/bar.c: Updated.
	* ld-elfweak/bar1a.c: Likewise.
	* ld-elfweak/main.c: Likewise.
	* ld-elfweak/main1.c: Likewise.
	* ld-elfweak/elfweak.exp: Likewise.
	* ld-elfweak/weakdata.dsym: Updated.
2001-09-14 23:43:17 +00:00

26 lines
382 B
C

#include <stdio.h>
extern int deallocate_foo;
extern int * bar ();
extern int * foo ();
extern void abort ();
extern void foobar ();
void
foobar ()
{
if (&deallocate_foo != bar () || &deallocate_foo != foo ())
abort ();
if (deallocate_foo)
printf ("weak deallocate_foo\n");
else
printf ("strong deallocate_foo\n");
}
int *
bar()
{
return &deallocate_foo;
}