* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr53187.c
blob13455f422718f64e73401773d4c49cf845ffd700
1 /* PR target/53187 */
3 void bar (int);
5 void
6 foo (int x, double y, double z)
8 _Bool t = z >= y;
9 if (!t || x)
10 bar (t ? 1 : 16);