Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20150327.c
blob: 125b722a6eba1bef0f859b47af7b460e66d29084 [
file
] [
log
] [
blame
]
/* { dg-require-effective-target indirect_calls } */
int
a
;
int
(*
b
)(),
(*
c
)();
int
fn1
(
int
p1
)
{
if
(
a
)
return
0
;
if
(
p1
)
{
c
();
b
();
}
}
void
fn2
()
{
fn1
(
0
);
}