Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / weak / weak-12.c
blob72cc1445e4b7e3910e7f79c97cfe672fa74a589d
1 /* Test for #pragma weak with declaration not at file scope. */
2 /* { dg-do compile } */
3 /* { dg-require-weak "" } */
4 /* { dg-options "" } */
6 /* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?foo" } } */
8 #pragma weak foo
10 int
11 main (void)
13 extern int foo (void);
14 if (&foo)
15 return foo ();
16 return 0;