summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr80970.c
blob: 3b96b581e332d5c121787de7704ed973851f7f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */

int a, b, c, d, e;
void f ()
{
  long g, h;
  if (c)
    e = d;
  g = d & 31;
  h = 1 << g;
  a = e | h;
  b = a;
}