diff options
Diffstat (limited to 'runtime/stack_map.h')
-rw-r--r-- | runtime/stack_map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/stack_map.h b/runtime/stack_map.h index 7aac792523..c17efcff25 100644 --- a/runtime/stack_map.h +++ b/runtime/stack_map.h @@ -388,7 +388,7 @@ class CodeInfo { return stack_map; } } - return StackMap(); + return stack_maps_.GetInvalidRow(); } // Searches the stack map list backwards because catch stack maps are stored at the end. @@ -399,7 +399,7 @@ class CodeInfo { return stack_map; } } - return StackMap(); + return stack_maps_.GetInvalidRow(); } StackMap GetOsrStackMapForDexPc(uint32_t dex_pc) const { @@ -409,7 +409,7 @@ class CodeInfo { return stack_map; } } - return StackMap(); + return stack_maps_.GetInvalidRow(); } StackMap GetStackMapForNativePcOffset(uint32_t pc, InstructionSet isa = kRuntimeISA) const; @@ -421,7 +421,7 @@ class CodeInfo { return item; } } - return InvokeInfo(); + return invoke_infos_.GetInvalidRow(); } // Dump this CodeInfo object on `vios`. |