diff options
Diffstat (limited to 'runtime/stack_map.cc')
-rw-r--r-- | runtime/stack_map.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stack_map.cc b/runtime/stack_map.cc index d813fd5487..5cda030285 100644 --- a/runtime/stack_map.cc +++ b/runtime/stack_map.cc @@ -140,7 +140,7 @@ size_t CodeInfo::Deduper::Dedupe(const uint8_t* code_info_data) { return deduped_offset; } -StackMap CodeInfo::GetStackMapForNativePcOffset(uint32_t pc, InstructionSet isa) const { +StackMap CodeInfo::GetStackMapForNativePcOffset(uintptr_t pc, InstructionSet isa) const { uint32_t packed_pc = StackMap::PackNativePc(pc, isa); // Binary search. All catch stack maps are stored separately at the end. auto it = std::partition_point( |