[committed] Fix previously latent bug in reorg affecting cris port
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / pr109566.c
blob39751c663eec6c439a016e8c6ea8c56150955d51
1 /* PR target/109566 */
2 /* Skip this on aix, otherwise it emits the error message like "64-bit
3 computation with 32-bit addressing not yet supported" on aix. */
4 /* { dg-do compile } */
5 /* { dg-skip-if "" { powerpc*-ibm-aix* } } */
6 /* { dg-options "-O2 -mpowerpc64" } */
8 void
9 foo (double x)
11 union { double d; unsigned i; } u;
12 u.d = x;
13 if (u.i & 0x7ff00000)
14 return;
15 else
16 for (;;)