Sign in
llvm
/
llvm-project.git
/
refs/heads/main
/
.
/
lldb
/
test
/
API
/
functionalities
/
watchpoint
/
modify-watchpoints
/
main.c
blob: 819c96c15fb08157bd382ce21637035ddbef1d8d [
file
] [
log
] [
blame
] [
edit
]
#include
<stdint.h>
int
main
()
{
int
value
=
5
;
value
=
5
;
// break here
value
=
5
;
value
=
5
;
value
=
5
;
value
=
5
;
value
=
5
;
value
=
10
;
value
=
10
;
value
=
10
;
value
=
10
;
value
=
5
;
value
=
7
;
value
=
9
;
return
value
;
}