aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr59153.c
blob: 262726a9453b9d1a89fe7a2ec270d76792db991f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O -flive-range-shrinkage -mdispatch-scheduler -march=bdver1" } */

int foo (float f)
{
  union
  {
    float f;
    int i;
  } z = { .f = f };

  return z.i - 1;
}