Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr71423.c
blob06a613f11fefee3788a08ff8f45ae159719a5afd
1 /* { dg-do run } */
3 struct S1
5 int f1:1;
6 };
8 volatile struct S1 b = { 0 };
10 int
11 main ()
13 char c = b.f1;
14 b.f1 = 1;
16 if (b.f1 > -1 || c)
17 __builtin_abort ();
19 return 0;