Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / ext / weak1.C
blobb7a448f371be6012bb10aed4d708da109a810584
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" }
10 // { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?bar1" } } 
12 #pragma weak bar1 = foo1
13 extern "C" void foo1 (void) {}