diff options
Diffstat (limited to 'runtime/fault_handler.cc')
-rw-r--r-- | runtime/fault_handler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/fault_handler.cc b/runtime/fault_handler.cc index 05bbfcf912..881dbadd0c 100644 --- a/runtime/fault_handler.cc +++ b/runtime/fault_handler.cc @@ -242,7 +242,7 @@ bool FaultManager::HandleSigbusFault(int sig, siginfo_t* info, [[maybe_unused]] inline void FaultManager::CheckForUnrecognizedImplicitSuspendCheckInBootImage( siginfo_t* siginfo, void* context) { - CHECK_EQ(kRuntimeISA, InstructionSet::kArm64); + CHECK_EQ(kRuntimeQuickCodeISA, InstructionSet::kArm64); uintptr_t fault_pc = GetFaultPc(siginfo, context); if (fault_pc == 0u || !IsUint<32>(fault_pc) || !IsAligned<4u>(fault_pc)) { return; @@ -301,7 +301,7 @@ bool FaultManager::HandleSigsegvFault(int sig, siginfo_t* info, void* context) { return true; } } - } else if (kRuntimeISA == InstructionSet::kArm64) { + } else if (kRuntimeQuickCodeISA == InstructionSet::kArm64) { CheckForUnrecognizedImplicitSuspendCheckInBootImage(info, context); } |