aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/bitfld-19.c
blob: 072e93c2ae9e72e6638a2fe6889e2182d9d3a628 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Test for bit-field widths not integer constant expressions but
   folding to integer constants: PR 42439.  */
/* { dg-do compile } */
/* { dg-options "-O2" } */

void
f (void)
{
  const int m = 1;
  ((void)(sizeof(struct { int i:!!m; })));
}