OSDN Git Service

2006-12-19 Eric Christopher <echristo@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Werror-6.c
1 /* { dg-do compile } */
2 /* { dg-options "-Wattributes -Werror=always-true" } */
3
4 /* Make sure -Werror-foo emits an error and not a warning */
5
6 void __attribute__((dj)) bar() { }      /* { dg-warning "warning: .* attribute directive ignored" } */
7
8 int i;
9
10 void
11 foo ()
12 {
13   if (&i)       /* { dg-error "error: .* will always evaluate as 'true'" } */
14     grill ();
15 }