comparison gcc/testsuite/gcc.dg/Werror-3.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* { dg-do compile } */
2 /* { dg-options "-Waddress -Wattributes" } */
3
4 /* Make sure the command line option enables the warning. */
5
6 void grill ();
7 void __attribute__((dj)) bar() { } /* { dg-warning ".* attribute directive ignored" } */
8
9 int i;
10
11 void
12 foo ()
13 {
14 if (&i) /* { dg-warning ".* will always evaluate as 'true'" } */
15 grill ();
16 }