Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
930406-1.c
blob: f240d1b09ab7190171b999b47f0d27bea6e869e8 [
file
] [
log
] [
blame
]
/* { dg-add-options stack_size } */
f
()
{
int
x
=
1
;
#if defined(STACK_SIZE)
char
big
[
STACK_SIZE
/
2
];
#else
char
big
[
0x1000
];
#endif
({
__label__ mylabel
;
mylabel
:
x
++;
if
(
x
!=
3
)
goto
mylabel
;
});
exit
(
0
);
}
main
()
{
f
();
}