bolt/deps/llvm-18.1.8/lldb/test/API/functionalities/watchpoint/modify-watchpoints/main.c

21 lines
257 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
#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;
}