[Lldb-commits] [lldb] [lldb-dap] Enabling instruction breakpoint support to lldb-dap. (PR #105278)

Adrian Vogelsgesang via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 21 18:18:08 PDT 2024


================
@@ -4078,6 +4255,9 @@ void RegisterRequestCallbacks() {
   g_dap.RegisterRequestCallback("threads", request_threads);
   g_dap.RegisterRequestCallback("variables", request_variables);
   g_dap.RegisterRequestCallback("disassemble", request_disassemble);
+  // Instruction breapoint request
----------------
vogelsgesang wrote:

we also need to update the stopped event to use `reason: instruction breakpoint` instead of `reason: breakpoint` in case we hit one of those breakpoints

https://github.com/llvm/llvm-project/pull/105278


More information about the lldb-commits mailing list