OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / weak2.C
1 // Test for #pragma weak with declaration not at file scope. 
2 // { dg-do compile }
3 // { dg-require-weak "" }
4 // { dg-options "" }
5
6 // { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?_Z3foov" } }
7
8 #pragma weak _Z3foov
9
10 int
11 main (void)
12 {
13   extern int foo (void);
14   if (&foo)
15     return foo ();
16   return 0;
17 }