Sign in
llvm
/
llvm-project
/
e8391d46198aa1390c1bcaff94de42eed34ae26b
/
.
/
lldb
/
test
/
API
/
functionalities
/
thread
/
step_out_line0
/
main.c
blob: ad0c1c05d6952391f43d9461bdb4cc822e0d213b [
file
] [
log
] [
blame
]
int
step_out_of_here
(
int
a
)
{
return
a
+
5
;
// Set breakpoint here
}
int
main
()
{
#line
0
int
v
=
step_out_of_here
(
3
)
+
7
;
#line
9
v
+=
11
;
// Should stop here
return
v
;
// Ran too far
}