view gcc/testsuite/gcc.dg/pr12625-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* 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" } */
}