================
@@ -0,0 +1,17 @@
+#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;
----------------
clayborg wrote:

Can we check that it stops when the value changes from 10 to something else to 
ensure we detect all watchpoint changes and we can ensure that m_new_value_sp 
and newest_valueobj_sp are doing their jobs correctly? We need to make sure we 
stop on all changes, here we are testing on change

https://github.com/llvm/llvm-project/pull/66308
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to