OSDN Git Service

2004-05-20 H.J. Lu <hongjiu.lu@intel.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / attr-used-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-Wall -O2" } */
3
4 static int xyzzy __attribute__((__used__)) = 1; 
5
6 void foo()
7 {
8   int x __attribute__((__used__)); /* { dg-warning "attribute ignored|unused variable" } */
9 }
10
11 /* { dg-final { scan-assembler "xyzzy" } } */