Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / objc.dg / weak-1.m
blobf39fbc4bbcecfa4e7ece88b5d75547bbb4f9355c
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 void foo1 (void) {}