]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr12625-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr12625-1.c
CommitLineData
a182b26d
JM
1/* Warning for assignment used as truth-value should apply for
2 bit-fields. */
3/* Origin: bug 12625 from nomura at netapp.com */
4/* { dg-do compile } */
5/* { dg-options "-Wparentheses" } */
6
7static struct { int i:8; } s;
8
9void
10foo ()
11{
12 if (s.i = 0) ; /* { dg-warning "parentheses" "warning for bit-field" } */
13}