OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / weak1.C
1 // Test for #pragma weak where the weak alias symbol isn't declared,
2 // although the symbol it is an alias for is defined in the
3 // translation unit.  Bug 7544.
4 // Origin: Joseph Myers <joseph@codesourcery.com>
5 // { dg-do compile }
6 // { dg-require-weak "" }
7 // { dg-require-alias "" }
8 // { dg-options "-fno-common" }
9
10 // { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?bar1" } } 
11
12 #pragma weak bar1 = foo1
13 extern "C" void foo1 (void) {}