summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/native_stack_dump.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native_stack_dump.cc b/runtime/native_stack_dump.cc
index cbff0bb2f2..7e16357376 100644
--- a/runtime/native_stack_dump.cc
+++ b/runtime/native_stack_dump.cc
@@ -337,7 +337,7 @@ void DumpNativeStack(std::ostream& os,
} else {
os << StringPrintf(Is64BitInstructionSet(kRuntimeISA) ? "%016" PRIxPTR " "
: "%08" PRIxPTR " ",
- BacktraceMap::GetRelativePc(it->map, it->pc));
+ it->rel_pc);
os << it->map.name;
os << " (";
if (!it->func_name.empty()) {