summaryrefslogtreecommitdiff
path: root/runtime/compiled_method.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/compiled_method.cc')
-rw-r--r--runtime/compiled_method.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/compiled_method.cc b/runtime/compiled_method.cc
index 49706ae8eb..c64c71ed3f 100644
--- a/runtime/compiled_method.cc
+++ b/runtime/compiled_method.cc
@@ -121,7 +121,7 @@ CompiledMethod::CompiledMethod(InstructionSet instruction_set,
DCHECK_EQ(vmap_table.size(),
static_cast<uint32_t>(__builtin_popcount(core_spill_mask)
+ __builtin_popcount(fp_spill_mask)));
- CHECK_LE(vmap_table.size(), (1U << 16) - 1); // length must fit in 2^16-1
+ CHECK_LE(vmap_table.size(), (1U << 16) - 1); // length must fit in 2^16-1
std::vector<uint32_t> length_prefixed_mapping_table;
length_prefixed_mapping_table.push_back(mapping_table.size());