projects
/
platform
/
upstream
/
coreclr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
740b64d
)
[x86/Linux] Fix GetCurrentSP (#9838)
author
Jonghyun Park
<parjong@gmail.com>
Tue, 28 Feb 2017 01:26:51 +0000
(10:26 +0900)
committer
Jan Vorlicek
<janvorli@microsoft.com>
Tue, 28 Feb 2017 01:26:51 +0000
(
02:26
+0100)
src/vm/i386/asmhelpers.S
patch
|
blob
|
history
diff --git
a/src/vm/i386/asmhelpers.S
b/src/vm/i386/asmhelpers.S
index 2f57b9e8a0c6a119db7967259064ba79043e4ff8..89e946dc0f2ebf55a7cf27e2f33c6397c643bbf7 100644
(file)
--- a/
src/vm/i386/asmhelpers.S
+++ b/
src/vm/i386/asmhelpers.S
@@
-574,6
+574,7
@@
LEAF_END GetCurrentIP, _TEXT
// LPVOID __stdcall GetCurrentSP(void);
LEAF_ENTRY GetCurrentSP, _TEXT
mov eax, esp
+ add eax, 4
ret
LEAF_END GetCurrentSP, _TEXT