re PR target/53187 (ICE in arm_select_dominance_cc_mode)
[official-gcc.git] / gcc / testsuite / gcc.target / arm / pr53187.c
blob648a06df5f67fc753fd4f1d73df4f3cd24a3fd8d
1 /* PR target/53187 */
2 /* { dg-do compile } */
3 /* { dg-options "-march=armv7-a -mfloat-abi=hard -O2" } */
5 void bar (int);
7 void
8 foo (int x, double y, double z)
10 _Bool t = z >= y;
11 if (!t || x)
12 bar (t ? 1 : 16);