aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20040709-1.c
blob: c8c9cc357fb2fc37df84e56f7395628e61ab4321 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR target/16364 */
union foo {
  long double ld;
} bar;

double
sub (union foo baz)
{
  return baz.ld / 2;
}