view gcc/testsuite/gcc.dg/pr12625-1.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +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" } */
}