PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / gimplefe-10.c
blob7f63c587c0357a1bef028d373536a1e00e5efda2
1 /* { dg-do compile } */
2 /* { dg-options "-fgimple" } */
4 int __GIMPLE() bar(int a, int b, int c)
6 a = 1;
7 b = a + 1;
8 c = b * 4;
9 return b;
12 void __GIMPLE() foo()
14 int a;
15 int b;
16 int c;
17 b = bar(a, b, c);