Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
delay.c
blob: c776383520a361645c91fde36844715ea51cc638 [
file
] [
log
] [
blame
]
foo
(
a
,
b
)
{
if
(
a
==
1
)
goto
foo1
;
if
(
a
==
2
)
goto
foo2
;
foo1
:
return
2
;
foo2
:
return
3
;
}