Revert "[LoongArch] Eliminate the redundant sign extension of division (#107971)"
[llvm-project.git] / lldb / test / API / functionalities / watchpoint / modify-watchpoints / main.c
blob819c96c15fb08157bd382ce21637035ddbef1d8d
1 #include <stdint.h>
2 int main() {
3 int value = 5;
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;
19 return value;