summaryrefslogtreecommitdiff
path: root/src/debug/ee/debugger.inl
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-01-24 15:50:20 +0900
committerJan Kotas <jkotas@microsoft.com>2017-01-23 22:50:20 -0800
commit7a1185d4abce994bebb1aaa604730c79dce70186 (patch)
tree8e78fc4d6a960975571475575c5f8724dbe65526 /src/debug/ee/debugger.inl
parent378a73e9d09fae6224c406754e2df171d2236593 (diff)
downloadcoreclr-7a1185d4abce994bebb1aaa604730c79dce70186.tar.gz
coreclr-7a1185d4abce994bebb1aaa604730c79dce70186.tar.bz2
coreclr-7a1185d4abce994bebb1aaa604730c79dce70186.zip
Rename Esp in x86 REGDISPLAY as SP (#9070)
* Rename Esp in x86 REGDISPLAY as SP * Fix x86/Windows build error
Diffstat (limited to 'src/debug/ee/debugger.inl')
-rw-r--r--src/debug/ee/debugger.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/ee/debugger.inl b/src/debug/ee/debugger.inl
index dbd5479a69..54ac8b9316 100644
--- a/src/debug/ee/debugger.inl
+++ b/src/debug/ee/debugger.inl
@@ -242,7 +242,7 @@ inline void FuncEvalFrame::UpdateRegDisplay(const PREGDISPLAY pRD)
pRD->pEcx = &(pDE->m_context.Ecx);
pRD->pEax = &(pDE->m_context.Eax);
pRD->pEbp = &(pDE->m_context.Ebp);
- pRD->Esp = (DWORD)GetSP(&pDE->m_context);
+ pRD->SP = (DWORD)GetSP(&pDE->m_context);
pRD->PCTAddr = GetReturnAddressPtr();
pRD->ControlPC = *PTR_PCODE(pRD->PCTAddr);