Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
complex-3.c
blob: f12a8f9da4ae175c685eb2eab260c76931a5022a [
file
] [
log
] [
blame
]
/* PR 22116 */
void
g
(
_Complex
float
);
_Complex
float
f
(
int
data
,
_Complex
float
x
,
_Complex
float
y
)
{
_Complex
float
i
,
t
;
if
(
data
)
{
i
=
x
+
__imag__ y
;
g
(
i
);
}
else
i
=
5
;
t
=
x
+
__imag__ y
;
g
(
t
);
return
t
*
i
;
}