middle-end: also optimized `popcount(a) <= 1` [PR90693]
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / ieee / pr67218.c
blob2a1260a7aa0e8857fadb11adde9311136cfc4f57
1 extern void abort (void) __attribute__ ((noreturn));
3 double __attribute__ ((noinline, noclone))
4 foo (unsigned int x)
6 return (double) (float) (x | 0xffff0000);
9 int
10 main ()
12 if (foo (1) != 0x1.fffep31)
13 abort ();
14 return 0;