[llvm] Added --report=debugger option to llvm-debuginfo-analyzer (PR #159853)
Carlos Alberto Enciso via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 29 08:38:47 PDT 2025
================
@@ -132,6 +132,14 @@ void LVOptions::resolveDependencies() {
setPrintWarnings();
}
+ if (getReportDebugger()) {
+ // Must include at least the lines, otherwise there's nothing to print
+ setPrintLines();
+ // Printing symbols in debugger report requires the symbol ranges
+ if (getPrintSymbols())
+ setAttributeRange();
+ }
+
----------------
CarlosAlbertoEnciso wrote:
Just a very minor points. Missing full stops in the comments.
https://github.com/llvm/llvm-project/pull/159853
More information about the llvm-commits
mailing list