PR tree-optimization/84235
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / ieee / pr84235.c
blob479b2b0f6ab188427bdabdf26d98a2c062bea5c4
1 /* PR tree-optimization/84235 */
3 int
4 main ()
6 double d = 1.0 / 0.0;
7 _Bool b = d == d && (d - d) != (d - d);
8 if (!b)
9 __builtin_abort ();
10 return 0;