Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / weak / weak-13.c
blob15106a5346bdc8577d8c9b6feadb13fb99975ef6
1 /* Test for weak aliases with multiple declarations. Sun assembler
2 rejects multiple weak alias definitions in the output. */
3 /* { dg-do assemble } */
4 /* { dg-require-weak "" } */
5 /* { dg-require-alias "" } */
6 /* { dg-options "" } */
8 #pragma weak foo = _foo
10 extern int foo;
11 extern int foo;
13 int _foo = 4;