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
foo1(void)13 void foo1 (void) {}
14