summaryrefslogtreecommitdiff
path: root/runtime/stack_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/stack_map.h')
-rw-r--r--runtime/stack_map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/stack_map.h b/runtime/stack_map.h
index cde08f312b..bfd646d599 100644
--- a/runtime/stack_map.h
+++ b/runtime/stack_map.h
@@ -436,9 +436,9 @@ class CodeInfo {
ALWAYS_INLINE static QuickMethodFrameInfo DecodeFrameInfo(const uint8_t* data) {
BitMemoryReader reader(data);
return QuickMethodFrameInfo(
- DecodeVarintBits(reader) * kStackAlignment, // Decode packed_frame_size_ and unpack.
- DecodeVarintBits(reader), // core_spill_mask_.
- DecodeVarintBits(reader)); // fp_spill_mask_.
+ reader.ReadVarint() * kStackAlignment, // Decode packed_frame_size_ and unpack.
+ reader.ReadVarint(), // core_spill_mask_.
+ reader.ReadVarint()); // fp_spill_mask_.
}
private: