c++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / evrp1.c
blobf5f38c4ce19daa188accae0e407201ae1362dcda
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-evrp-details" } */
4 int foo (int i);
5 int bar (int j)
7 if (j > 2)
8 return foo (j + 2);
9 else
10 return j;
13 /* { dg-final { scan-tree-dump "\\\[5, \\+INF" "evrp" } } */