@@ -295,7 +295,7 @@ void LazyMachState::unwindLazyState(LazyMachState* baseState,
295
295
context.X27 = unwoundstate->captureX19_X29 [8 ] = baseState->captureX19_X29 [8 ];
296
296
context.X28 = unwoundstate->captureX19_X29 [9 ] = baseState->captureX19_X29 [9 ];
297
297
context.Fp = unwoundstate->captureX19_X29 [10 ] = baseState->captureX19_X29 [10 ];
298
- context.Lr = NULL ; // Filled by the unwinder
298
+ context.Lr = 0 ; // Filled by the unwinder
299
299
300
300
context.Sp = baseState->captureSp ;
301
301
context.Pc = baseState->captureIp ;
@@ -316,7 +316,7 @@ void LazyMachState::unwindLazyState(LazyMachState* baseState,
316
316
nonVolContextPtrs.X27 = &unwoundstate->captureX19_X29 [8 ];
317
317
nonVolContextPtrs.X28 = &unwoundstate->captureX19_X29 [9 ];
318
318
nonVolContextPtrs.Fp = &unwoundstate->captureX19_X29 [10 ];
319
- nonVolContextPtrs.Lr = NULL ; // Filled by the unwinder
319
+ nonVolContextPtrs.Lr = 0 ; // Filled by the unwinder
320
320
321
321
#endif // DACCESS_COMPILE
322
322
@@ -464,7 +464,7 @@ void HelperMethodFrame::UpdateRegDisplay(const PREGDISPLAY pRD, bool updateFloat
464
464
pRD->pCurrentContext ->X27 = (DWORD64)(pUnwoundState->captureX19_X29 [8 ]);
465
465
pRD->pCurrentContext ->X28 = (DWORD64)(pUnwoundState->captureX19_X29 [9 ]);
466
466
pRD->pCurrentContext ->Fp = (DWORD64)(pUnwoundState->captureX19_X29 [10 ]);
467
- pRD->pCurrentContext ->Lr = NULL ; // Unwind again to get Caller's PC
467
+ pRD->pCurrentContext ->Lr = 0 ; // Unwind again to get Caller's PC
468
468
469
469
pRD->pCurrentContextPointers ->X19 = &pRD->pCurrentContext ->X19 ;
470
470
pRD->pCurrentContextPointers ->X20 = &pRD->pCurrentContext ->X20 ;
@@ -503,7 +503,7 @@ void HelperMethodFrame::UpdateRegDisplay(const PREGDISPLAY pRD, bool updateFloat
503
503
pRD->pCurrentContext ->X27 = (DWORD64)(m_MachState.unwoundX19_X29 [8 ]);
504
504
pRD->pCurrentContext ->X28 = (DWORD64)(m_MachState.unwoundX19_X29 [9 ]);
505
505
pRD->pCurrentContext ->Fp = (DWORD64)(m_MachState.unwoundX19_X29 [10 ]);
506
- pRD->pCurrentContext ->Lr = NULL ; // Unwind again to get Caller's PC
506
+ pRD->pCurrentContext ->Lr = 0 ; // Unwind again to get Caller's PC
507
507
#else // __APPLE__
508
508
pRD->pCurrentContext ->X19 = *m_MachState.ptrX19_X29 [0 ];
509
509
pRD->pCurrentContext ->X20 = *m_MachState.ptrX19_X29 [1 ];
@@ -516,7 +516,7 @@ void HelperMethodFrame::UpdateRegDisplay(const PREGDISPLAY pRD, bool updateFloat
516
516
pRD->pCurrentContext ->X27 = *m_MachState.ptrX19_X29 [8 ];
517
517
pRD->pCurrentContext ->X28 = *m_MachState.ptrX19_X29 [9 ];
518
518
pRD->pCurrentContext ->Fp = *m_MachState.ptrX19_X29 [10 ];
519
- pRD->pCurrentContext ->Lr = NULL ; // Unwind again to get Caller's PC
519
+ pRD->pCurrentContext ->Lr = 0 ; // Unwind again to get Caller's PC
520
520
#endif // __APPLE__
521
521
522
522
#if !defined(DACCESS_COMPILE)
@@ -531,7 +531,7 @@ void HelperMethodFrame::UpdateRegDisplay(const PREGDISPLAY pRD, bool updateFloat
531
531
pRD->pCurrentContextPointers ->X27 = m_MachState.ptrX19_X29 [8 ];
532
532
pRD->pCurrentContextPointers ->X28 = m_MachState.ptrX19_X29 [9 ];
533
533
pRD->pCurrentContextPointers ->Fp = m_MachState.ptrX19_X29 [10 ];
534
- pRD->pCurrentContextPointers ->Lr = NULL ; // Unwind again to get Caller's PC
534
+ pRD->pCurrentContextPointers ->Lr = 0 ; // Unwind again to get Caller's PC
535
535
#endif
536
536
537
537
ClearRegDisplayArgumentAndScratchRegisters (pRD);
0 commit comments