blob: f564654513210bc557f6251ea920f10048d65115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* { dg-do compile } */
/* { dg-options "-Wattributes -Werror" } */
/* { dg-warning "warnings being treated as errors" "" {target "*-*-*"} 0 } */
/* Make sure #pragma can work with -Werror. */
#pragma GCC diagnostic error "-Waddress"
void __attribute__((dj)) bar() { } /* { dg-error "error: .* attribute directive ignored" } */
int i;
void
foo ()
{
if (&i) /* { dg-error "error: .* will always evaluate as 'true'" } */
grill ();
}
|