Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr68067-1.c
blobf8ad3ca0168d8e2fa78de58efc30f252b2938798
1 /* { dg-do run } */
2 /* { dg-require-effective-target int32plus } */
4 int main()
6 int a = -1;
7 static int b = -2147483647 - 1;
8 static int c = 0;
9 int t = a - (b - c);
10 if (t != 2147483647)
11 __builtin_abort();
12 return 0;