Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gcc.dg
/
darwin-weakimport-2.c
blob: 1c981722282ca146bbd976481588618f4afa076e [
file
] [
log
] [
blame
]
/* { dg-do compile { target *-*-darwin* } } */
/* { dg-require-weak "" } */
/* { dg-final { scan-assembler "weak_reference _foo" } } */
extern
int
foo __attribute__
((
weak_import
));
int
main
(
void
)
{
if
(&
foo
)
return
foo
;
return
0
;
}