2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / attr-used-2.c
blobf78b94b53a940e825ae7f4bb11901056fa516622
1 /* { dg-do compile } */
2 /* { dg-options "-Wall -O2" } */
4 static int xyzzy __attribute__((__used__)) = 1;
6 void foo()
8 int x __attribute__((__used__)); /* { dg-warning "attribute ignored|unused variable" } */
11 /* { dg-final { scan-assembler "xyzzy" } } */