From d02b23f7ee9664213216a82bfdcb0ee83824de04 Mon Sep 17 00:00:00 2001 From: David Srbecky Date: Tue, 29 May 2018 23:27:22 +0100 Subject: 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 --- runtime/stack_map.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/stack_map.cc') 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) -- cgit v1.2.3-59-g8ed1b