blob: 9ad9f28897d50c162e104ebdf88f3296dd9b0058 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Warning for assignment used as truth-value should apply for
bit-fields. */
/* Origin: bug 12625 from nomura at netapp.com */
/* { dg-do compile } */
/* { dg-options "-Wparentheses" } */
static struct { int i:8; } s;
void
foo ()
{
if (s.i = 0) ; /* { dg-warning "parentheses" "warning for bit-field" } */
}
|