OSDN Git Service

* gcc.dg/tree-ssa/fre-vce-1.c: Cleanup "fre" tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Werror-8.c
1 /* { dg-do compile } */
2 /* { dg-options "-Wattributes" } */
3
4 /* Make sure #pragma can enable a warning.  */
5
6 #pragma GCC diagnostic warning "-Waddress"
7
8 void __attribute__((dj)) bar() { }      /* { dg-warning ".* attribute directive ignored" } */
9
10 int i;
11
12 void
13 foo ()
14 {
15   if (&i)       /* { dg-warning ".* will always evaluate as 'true'" } */
16     grill ();
17 }