Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
ifreg.c
blob: a9bef17ff57f5c31ffdae37a192c25c11ef7e7b0 [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu89" } */
union
foo
{
float
f
;
int
i
;
};
foo
(
int
a
,
float
c
)
{
union
foo b
;
b
.
i
=
a
;
return
b
.
f
+
c
;
}