summaryrefslogtreecommitdiff
path: root/src/pal/src/arch/i386/exceptionhelper.S
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-04-24 17:39:52 +0900
committerJan Vorlicek <janvorli@microsoft.com>2017-04-24 01:39:52 -0700
commite1efbf4a587c44a73bdabcbf99d6fa2074065754 (patch)
treee2fb541c5d032e512158fc74bc86e5a99c4debe7 /src/pal/src/arch/i386/exceptionhelper.S
parent3b0f7a92039e6c2d49a0ddd72e068540b11beadd (diff)
downloadcoreclr-e1efbf4a587c44a73bdabcbf99d6fa2074065754.tar.gz
coreclr-e1efbf4a587c44a73bdabcbf99d6fa2074065754.tar.bz2
coreclr-e1efbf4a587c44a73bdabcbf99d6fa2074065754.zip
[x86/Linux] Remove unnecessary ResumeEsp field (#11167)
Diffstat (limited to 'src/pal/src/arch/i386/exceptionhelper.S')
-rw-r--r--src/pal/src/arch/i386/exceptionhelper.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pal/src/arch/i386/exceptionhelper.S b/src/pal/src/arch/i386/exceptionhelper.S
index bf44124479..b9ceffcc13 100644
--- a/src/pal/src/arch/i386/exceptionhelper.S
+++ b/src/pal/src/arch/i386/exceptionhelper.S
@@ -23,7 +23,7 @@ LEAF_ENTRY ThrowExceptionFromContextInternal, _TEXT
mov eax, [esp + 8] // ebx: CONTEXT *
mov ebp, [eax + CONTEXT_Ebp]
- mov esp, [eax + CONTEXT_ResumeEsp]
+ mov esp, [eax + CONTEXT_Esp]
mov ebx, [eax + CONTEXT_Ebx]
mov esi, [eax + CONTEXT_Esi]
mov edi, [eax + CONTEXT_Edi]