[llvm] [Symbolize] Always use filename:line from debug info when debug info for the given address is available. (PR #128619)
Zequan Wu via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 16:57:29 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
+
----------------
ZequanWu wrote:
By default llvm-symbolizer uses `symbolizedInlineCode`, I just need to add `--inlining=false` to test `symbolizeCode`. For `symbolizeData`, I made the change for consistency but I don't know how to generate test case that has debug info for a data and has line number 0.
https://github.com/llvm/llvm-project/pull/128619
More information about the llvm-commits
mailing list