Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr57083.c
blob070a53d2165211b0269dc5ba55adbb8276dede4a
1 /* PR tree-optimization/57083 */
2 /* { dg-do run { target int32plus } } */
4 extern void abort (void);
5 short x = 1;
6 int y = 0;
8 int
9 main ()
11 unsigned t = (0x7fff8001U - x) << (y == 0);
12 if (t != 0xffff0000U)
13 abort ();
14 return 0;