[llvm] [Symbolize] Always use filename:line from debug info when debug info for the given address is available. (PR #128619)

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 11:17:11 PST 2025


================
@@ -0,0 +1,175 @@
+# Test llvm-symbolizer always uses line info from debug info if present.
+# RUN: yaml2obj %s -o %t
+# RUN: llvm-symbolizer --obj=%t 0x1 | FileCheck %s
+
+# CHECK:      foo(bool)
+# CHECK-NEXT: ??:0:0
+
----------------
dwblaikie wrote:

The code changes touch 3 paths (symbolizeCode, symbolizedInlineCode, and symbolizeData) but I guess this only tests one of those codepaths? Please add test coverage for the other two.

& perhaps some more detail in the description about the situation where this comes up
& some details about how this yaml was generated/what's interesting in the test case?

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


More information about the llvm-commits mailing list