Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr43635.c
blob: 3875f4efcd46895ecfa95d007108db0bbfa57b4a [
file
] [
log
] [
blame
]
/* { dg-require-effective-target untyped_assembly } */
/* { dg-require-effective-target indirect_calls } */
extern
void
d
(
void
);
void
(*
foo
(
void
))
(
float
)
{
void
(*(*
x
)
(
void
))
(
float
)
=
d
;
return
(*
x
)
();
}