Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
complex-1.c
blob: 6ba9f04694d677c33b58e1e1ec9a62f4505e26ef [
file
] [
log
] [
blame
]
extern
void
u
(
int
,
int
);
extern
void
v
(
float
,
float
);
void
f
(
__complex__
int
x
)
{
u
(
0
,
x
);
}
void
g
(
__complex__
float
x
)
{
v
(
0
,
x
);
}