blob: 45d217b32331899e0d6e298d9521bab2301ccf8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* { dg-do compile } */
/* { dg-options "-Wattributes" } */
/* Make sure the pragma enables the error. */
#pragma GCC diagnostic error "-Walways-true"
void __attribute__((dj)) bar() { } /* { dg-warning "warning: .* attribute directive ignored" } */
int i;
void
foo ()
{
if (&i) /* { dg-error "error: .* will always evaluate as 'true'" } */
grill ();
}
|