* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr71947-8.c
blob26e5abbdc293fa7115d34f11eb4e003f029cac3b
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-vrp -fdump-tree-dom-details" } */
5 int f(int x, int y)
7 int ret;
8 if (x == y)
9 ret = x / y;
10 else
11 ret = 0;
13 return ret;
15 /* { dg-final { scan-tree-dump "Replaced redundant expr \[^\r\n\]* with .1." "dom2" } } */