[llvm-bugs] [Bug 26065] New: llvm-symbolizer: prints incorrect location with -inlining=0
via llvm-bugs
llvm-bugs at lists.llvm.org
Thu Jan 7 08:36:22 PST 2016
https://llvm.org/bugs/show_bug.cgi?id=26065
Bug ID: 26065
Summary: llvm-symbolizer: prints incorrect location with
-inlining=0
Product: compiler-rt
Version: unspecified
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: compiler-rt
Assignee: unassignedbugs at nondot.org
Reporter: dvyukov at google.com
CC: llvm-bugs at lists.llvm.org
Classification: Unclassified
Output with -inlining=1:
__preempt_count_add
./arch/x86/include/asm/preempt.h:69:0
__rcu_read_lock
include/linux/rcupdate.h:301:0
rcu_read_lock
include/linux/rcupdate.h:859:0
find_get_entry
mm/filemap.c:1035:0
Output with -inlining=0:
find_get_entry
./arch/x86/include/asm/preempt.h:69:0
preempt.h:69 defines __preempt_count_add function.
Combination of find_get_entry and preempt.h:69 does not make sense.
-inlining=0 output should be:
find_get_entry
mm/filemap.c:1035:0
That is, print matching outermost/physical function name and location.
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20160107/6053787b/attachment-0001.html>
More information about the llvm-bugs
mailing list