PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-lim-8.c
blob9256b39fb449e7fb01e9bf49c3d74bea221a6ea6
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-lim2-details" } */
4 void bar (int);
5 void foo (int n, int m)
7 unsigned i;
8 for (i = 0; i < n; ++i)
10 int x;
11 if (m < 0)
12 x = 1;
13 else
14 x = m;
15 bar (x);
19 /* { dg-final { scan-tree-dump-times "Moving PHI node" 1 "lim2" } } */