aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr85401.c
blob: fa8fa19be59130d62e15a09d2da16b5a4a0446d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-O2" } */

int h (void);
int i (int);

struct a b;
struct a
{
  unsigned c:4;
} d ()
{
  int e, f = b.c << 2, g = h ();
  for (; g;)
    ;
  if (e == 0)
    if (f)
      i (f);
  return b;
}