Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
binutils
/
gdb
/
testsuite
/
gdb.base
/
async.c
blob: 9148b1913d37880ab3e370cc479e9681a6c6034d [
file
] [
log
] [
blame
]
int
foo
(
void
)
{
int
y
;
volatile
int
x
;
x
=
5
;
x
=
5
;
x
=
5
;
y
=
3
;
return
x
+
y
;
}
int
baz
(
void
)
{
return
5
;
}
int
main
(
void
)
{
int
y
,
z
;
y
=
2
;
z
=
9
;
y
=
foo
();
z
=
y
;
y
=
y
+
2
;
/* jump here */
y
=
baz
();
return
0
;
/* until here */
}