[Lldb-commits] [lldb] [lldb-dap] assembly breakpoints (PR #139969)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue May 20 08:10:46 PDT 2025


================
@@ -219,6 +218,9 @@ struct DAP {
   llvm::StringSet<> modules;
   /// @}
 
+  /// Number of lines of assembly code to show when no debug info is available.
+  static constexpr uint32_t number_of_assembly_lines_for_nodebug = 32;
----------------
JDevlieghere wrote:

Constants use a `k_` prefix.
```suggestion
  static constexpr uint32_t k_number_of_assembly_lines_for_nodebug = 32;
```

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


More information about the lldb-commits mailing list