Skip to content

Commit

Permalink
Merge pull request dotnet#4655 from swaroop-sridhar/aagc3
Browse files Browse the repository at this point in the history
ARM64: Update FP-context-pointer in ExceptionFrame
  • Loading branch information
swaroop-sridhar committed Apr 29, 2016
2 parents f03813f + c738dd8 commit 23d0b7a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/vm/arm64/stubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -734,10 +734,8 @@ void FaultingExceptionFrame::UpdateRegDisplay(const PREGDISPLAY pRD)
pRD->pCurrentContextPointers->X26 = (PDWORD64)&m_ctx.X26;
pRD->pCurrentContextPointers->X27 = (PDWORD64)&m_ctx.X27;
pRD->pCurrentContextPointers->X28 = (PDWORD64)&m_ctx.X28;
pRD->pCurrentContextPointers->Fp = NULL;
pRD->pCurrentContextPointers->Lr = NULL;


pRD->pCurrentContextPointers->Fp = (PDWORD64)&m_ctx.Fp;
pRD->pCurrentContextPointers->Lr = (PDWORD64)&m_ctx.Lr;

pRD->IsCallerContextValid = FALSE;
pRD->IsCallerSPValid = FALSE; // Don't add usage of this field. This is only temporary.
Expand Down

0 comments on commit 23d0b7a

Please sign in to comment.