summaryrefslogtreecommitdiff
path: root/runtime/stack_map.cc
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2018-05-29 23:27:22 +0100
committer David Srbecky <dsrbecky@google.com> 2018-05-30 17:59:24 +0100
commitd02b23f7ee9664213216a82bfdcb0ee83824de04 (patch)
tree254b794533a6821c2ed2df31fab807abf7d508a4 /runtime/stack_map.cc
parent08231f6cb3095a7dbde29299a7da5413a5f992e4 (diff)
Remove the CodeOffset helper class.
I need to reduce the StackMapEntry to a POD type so that it can be used in BitTableBuilder. Test: test-art-host-gtest-stack_map_test Change-Id: I5f9ad7fdc9c9405f22669a11aea14f925ef06ef7
Diffstat (limited to 'runtime/stack_map.cc')
-rw-r--r--runtime/stack_map.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stack_map.cc b/runtime/stack_map.cc
index fd0e28d9ac..4ed60bf475 100644
--- a/runtime/stack_map.cc
+++ b/runtime/stack_map.cc
@@ -90,7 +90,7 @@ void StackMap::DumpEncoding(const BitTable<6>& table,
VariableIndentationOutputStream* vios) {
vios->Stream()
<< "StackMapEncoding"
- << " (NativePcOffsetBits=" << table.NumColumnBits(kNativePcOffset)
+ << " (PackedNativePcBits=" << table.NumColumnBits(kPackedNativePc)
<< ", DexPcBits=" << table.NumColumnBits(kDexPc)
<< ", DexRegisterMapOffsetBits=" << table.NumColumnBits(kDexRegisterMapOffset)
<< ", InlineInfoIndexBits=" << table.NumColumnBits(kInlineInfoIndex)