@@ -5426,14 +5426,14 @@ BOOL IsSafeToCallExecutionManager()
5426
5426
5427
5427
BOOL IsSafeToHandleHardwareException (PCONTEXT contextRecord, PEXCEPTION_RECORD exceptionRecord)
5428
5428
{
5429
- #ifdef FEATURE_EMULATE_SINGLESTEP
5429
+ #ifdef FEATURE_EMULATE_SINGLESTEP
5430
5430
Thread *pThread = GetThreadNULLOk ();
5431
5431
if (pThread && pThread->IsSingleStepEnabled () &&
5432
5432
exceptionRecord->ExceptionCode != STATUS_BREAKPOINT &&
5433
5433
exceptionRecord->ExceptionCode != STATUS_SINGLE_STEP &&
5434
5434
exceptionRecord->ExceptionCode != STATUS_STACK_OVERFLOW)
5435
5435
{
5436
- // tried to consolidate the code and only call HandleSingleStep here but
5436
+ // tried to consolidate the code and only call HandleSingleStep here but
5437
5437
// for some reason not investigated the debugger tests failed with this change
5438
5438
pThread->HandleSingleStep (contextRecord, exceptionRecord->ExceptionCode );
5439
5439
}
@@ -7691,7 +7691,7 @@ size_t GetSSPForFrameOnCurrentStack(TADDR ip)
7691
7691
{
7692
7692
size_t *targetSSP = (size_t *)_rdsspq ();
7693
7693
// The SSP we search is pointing to the return address of the frame represented
7694
- // by the passed in IP. So we search for the instruction pointer from
7694
+ // by the passed in IP. So we search for the instruction pointer from
7695
7695
// the context and return one slot up from there.
7696
7696
if (targetSSP != NULL )
7697
7697
{
@@ -7882,7 +7882,7 @@ extern "C" void * QCALLTYPE CallCatchFunclet(QCall::ObjectHandleOnStack exceptio
7882
7882
pvRegDisplay->pCurrentContext ->Lr = GetIP (pvRegDisplay->pCurrentContext );
7883
7883
#elif defined(HOST_ARM)
7884
7884
pvRegDisplay->pCurrentContext ->Lr = GetIP (pvRegDisplay->pCurrentContext );
7885
- #elif defined(HOST_RISCV ) || defined(HOST_LOONGARCH64)
7885
+ #elif defined(HOST_RISCV64 ) || defined(HOST_LOONGARCH64)
7886
7886
pvRegDisplay->pCurrentContext ->Ra = GetIP (pvRegDisplay->pCurrentContext );
7887
7887
#endif
7888
7888
SetIP (pvRegDisplay->pCurrentContext , (PCODE)(void (*)(Object*))PropagateExceptionThroughNativeFrames);
0 commit comments