Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr71452.c
blob8948d39fdafd6145c882251e10bb37154c7ef0bd
1 /* { dg-do run } */
3 int main()
5 _Bool b;
6 *(char *)&b = 123;
7 if (*(char *)&b != 123)
8 __builtin_abort ();
9 return 0;