summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/gimplefe-6.c
blob: 242e08fe1a04ecf83042f24330972e24e29a4fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-options "-fgimple" } */

void __GIMPLE () foo ()
{
  int a;
  int b;
  int c;
  int d;

bb_2:
  a = ~b;
  b = a << c;
  c = a & b;
  d = b | c;

bb_3:
  return;
}