Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
920612-2.c
blob: 23796fcdaa91e7a098df10cfdecceb372a5307ef [
file
] [
log
] [
blame
]
/* { dg-require-effective-target trampolines } */
main
()
{
int
i
=
0
;
int
a
(
int
x
)
{
while
(
x
)
i
++,
x
--;
return
x
;
}
if
(
a
(
2
)
!=
0
)
abort
();
exit
(
0
);
}