repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[LoongArch] Eliminate the redundant sign extension of division (#107971)"
[llvm-project.git]
/
lldb
/
test
/
API
/
functionalities
/
watchpoint
/
modify-watchpoints
/
main.c
blob
819c96c15fb08157bd382ce21637035ddbef1d8d
1
#include <stdint.h>
2
int
main
() {
3
int
value
=
5
;
4
5
value
=
5
;
// break here
6
value
=
5
;
7
value
=
5
;
8
value
=
5
;
9
value
=
5
;
10
value
=
5
;
11
value
=
10
;
12
value
=
10
;
13
value
=
10
;
14
value
=
10
;
15
value
=
5
;
16
value
=
7
;
17
value
=
9
;
18
19
return
value
;
20
}