[x86/Linux] fix a typo of FillRegDisplay method. (dotnet/coreclr#10547)
authorragmani <ragmani0216@gmail.com>
Wed, 29 Mar 2017 08:21:25 +0000 (17:21 +0900)
committerJan Vorlicek <janvorli@microsoft.com>
Wed, 29 Mar 2017 08:21:25 +0000 (10:21 +0200)
Signed-off-by: ragmani <ragmani0216@gmail.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/a1ad1592f45bdfc544deedb1d2e88e9a35895bb1

src/coreclr/src/inc/regdisp.h

index 90669dc..a361dca 100644 (file)
@@ -396,7 +396,7 @@ inline void FillRegDisplay(const PREGDISPLAY pRD, PT_CONTEXT pctx, PT_CONTEXT pC
 #elif defined(_TARGET_X86_) // _TARGET_ARM_
     for (int i = 0; i < 7; i++)
     {
-        *(&pRD->ctxPtrsOne.Esi + i) = (&pctx->Esi + i);
+        *(&pRD->ctxPtrsOne.Edi + i) = (&pctx->Edi + i);
     }
 #else // _TARGET_X86_
     PORTABILITY_ASSERT("FillRegDisplay");