diff options
author | Konstantin Baladurin <k.baladurin@partner.samsung.com> | 2017-09-28 19:26:39 +0300 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2017-09-28 09:26:39 -0700 |
commit | 0a17ae10d45db4731071e9a450178933b6d9d1f5 (patch) | |
tree | 95f0746807dd14358f9df5bab9b63ef362dafc54 /src | |
parent | f8b5f537bcb234d1df53445e13f187cadb186c37 (diff) | |
download | coreclr-0a17ae10d45db4731071e9a450178933b6d9d1f5.tar.gz coreclr-0a17ae10d45db4731071e9a450178933b6d9d1f5.tar.bz2 coreclr-0a17ae10d45db4731071e9a450178933b6d9d1f5.zip |
[x86/Linux] Fix typo in SetDebuggerREGDISPLAYFromREGDISPLAY (#14221)
Fix typo in SetDebuggerREGDISPLAYFromREGDISPLAY: Esi -> Eax.
Diffstat (limited to 'src')
-rw-r--r-- | src/debug/shared/i386/primitives.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/shared/i386/primitives.cpp b/src/debug/shared/i386/primitives.cpp index ab22a5d4b1..6152aa2e25 100644 --- a/src/debug/shared/i386/primitives.cpp +++ b/src/debug/shared/i386/primitives.cpp @@ -93,7 +93,7 @@ void SetDebuggerREGDISPLAYFromREGDISPLAY(DebuggerREGDISPLAY* pDRD, REGDISPLAY* p pDRD->Ebx = (pRD->GetEbxLocation() == NULL ? 0 : *pRD->GetEbxLocation()); pDRD->Edx = (pRD->GetEdxLocation() == NULL ? 0 : *pRD->GetEdxLocation()); pDRD->Ecx = (pRD->GetEcxLocation() == NULL ? 0 : *pRD->GetEcxLocation()); - pDRD->Eax = (pRD->GetEsiLocation() == NULL ? 0 : *pRD->GetEaxLocation()); + pDRD->Eax = (pRD->GetEaxLocation() == NULL ? 0 : *pRD->GetEaxLocation()); #if defined(USE_REMOTE_REGISTER_ADDRESS) pDRD->pFP = PushedRegAddr(pRD, FPAddress); |