PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr59153.c
blob262726a9453b9d1a89fe7a2ec270d76792db991f
1 /* { dg-do compile } */
2 /* { dg-options "-O -flive-range-shrinkage -mdispatch-scheduler -march=bdver1" } */
4 int foo (float f)
6 union
8 float f;
9 int i;
10 } z = { .f = f };
12 return z.i - 1;