Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20040726-1.c
blob: aea43a56f34de4bb06921a4978eac65ed48a14f6 [
file
] [
log
] [
blame
]
/* PR rtl-optimization/16643 */
/* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */
void
foo
(
int
a
,
int
b
,
int
c
,
int
d
,
int
e
,
int
*
f
)
{
if
(
a
==
0
)
if
(
b
==
0
)
if
(
c
==
0
)
if
(
d
==
0
)
{
*
f
=
e
;
return
;
}
*
f
=
e
;
return
;
}