Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
goto-1.c
blob: 336ff2e6ce9afe11054db8904dfc7ac833eb2cb8 [
file
] [
log
] [
blame
]
void
f
(
void
)
{
do
{
if
(
0
)
{
L1
:;
}
else
goto
L2
;
L2
:;
}
while
(
0
);
goto
L1
;
}