Sign in
llvm
/
llvm-project
/
a78861fc55d18046989ff4d624a037e9181da170
/
.
/
lldb
/
test
/
API
/
functionalities
/
watchpoint
/
modify-watchpoints
/
main.c
blob: 819c96c15fb08157bd382ce21637035ddbef1d8d [
file
] [
log
] [
blame
]
#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
;
}