PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / Werror-10.c
blobc5b2b4bfc6a10b54b236f2e21c0c31c155f550da
1 /* { dg-do compile } */
2 /* { dg-options "-Wattributes -Werror" } */
3 /* { dg-message "warnings being treated as errors" "" {target "*-*-*"} 0 } */
5 /* Make sure #pragma can work with -Werror. */
7 #pragma GCC diagnostic error "-Waddress"
9 void grill ();
10 void __attribute__((dj)) bar() { } /* { dg-error ".* attribute directive ignored" } */
12 int i;
14 void
15 foo ()
17 if (&i) /* { dg-error ".* will always evaluate as 'true'" } */
18 grill ();