diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-13 04:58:40 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-13 04:58:40 +0000 |
commit | 64ad76699ce473e8847a8cc7b84815197d047b9a (patch) | |
tree | a6260a7ce7838019d55efb20d4ad5262d7e0427f /MdePkg/Library/BaseLib/Ia32/SetJump.S | |
parent | c7cbcc52d69e0d8f015ff5b95ebf39b7355e0719 (diff) | |
download | edk2-platforms-64ad76699ce473e8847a8cc7b84815197d047b9a.tar.xz |
1. Add Assert in SetJump.S
2. Rename internal function of ModU64x32.S to avoid collision.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@948 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/SetJump.S')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/SetJump.S | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/SetJump.S b/MdePkg/Library/BaseLib/Ia32/SetJump.S index b1b6a84f63..05acc4ab26 100644 --- a/MdePkg/Library/BaseLib/Ia32/SetJump.S +++ b/MdePkg/Library/BaseLib/Ia32/SetJump.S @@ -23,8 +23,11 @@ -.global _SetJump
+.global _SetJump, _InternalAssertJumpBuffer
_SetJump:
+ pushl 0x4(%esp)
+ call _InternalAssertJumpBuffer
+ popl %ecx
popl %ecx
movl (%esp),%edx
movl %ebx,(%edx)
|