Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20010503-1.c
blob: 75005f456c3eed2238b0cecec9b86ea238ee596f [
file
] [
log
] [
blame
]
void
f1
(
double
);
void
f2
(
int
);
void
foo
(
int
type
,
double
xx
)
{
if
(
type
)
f1
(
xx
);
else
f2
(
type
);
}
void
bar
(
int
type
)
{
foo
(
type
,
1.0
);
}