summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2006-05-31 08:50:43 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2006-05-31 08:50:43 +0000
commite513625f2244bef3d2365120760fccbe2e8afe85 (patch)
tree553b8d58d3557329226bc55b39beed4d4d10a374 /MdePkg
parentc39b1ee3cdc49fade9d29a9b8629b84f6bba6b6b (diff)
downloadedk2-e513625f2244bef3d2365120760fccbe2e8afe85.zip
edk2-e513625f2244bef3d2365120760fccbe2e8afe85.tar.gz
edk2-e513625f2244bef3d2365120760fccbe2e8afe85.tar.bz2
change LongJump() to _LongJump()
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@344 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/LongJump.asm6
-rw-r--r--MdePkg/Library/BaseLib/Ia32/LongJump.s6
2 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/LongJump.asm b/MdePkg/Library/BaseLib/Ia32/LongJump.asm
index ff0cef2..5b7e21a 100644
--- a/MdePkg/Library/BaseLib/Ia32/LongJump.asm
+++ b/MdePkg/Library/BaseLib/Ia32/LongJump.asm
@@ -15,7 +15,7 @@
;
; Abstract:
;
-; Implementation of LongJump() on IA-32.
+; Implementation of _LongJump() on IA-32.
;
;------------------------------------------------------------------------------
@@ -23,7 +23,7 @@
.model flat
.code
-_LongJump PROC
+__LongJump PROC
pop eax
pop edx
pop eax
@@ -33,6 +33,6 @@ _LongJump PROC
mov ebp, [edx + 12]
mov esp, [edx + 16]
jmp dword ptr [edx + 20]
-_LongJump ENDP
+__LongJump ENDP
END
diff --git a/MdePkg/Library/BaseLib/Ia32/LongJump.s b/MdePkg/Library/BaseLib/Ia32/LongJump.s
index 3da0914..4a36afc 100644
--- a/MdePkg/Library/BaseLib/Ia32/LongJump.s
+++ b/MdePkg/Library/BaseLib/Ia32/LongJump.s
@@ -15,7 +15,7 @@
#
# Abstract:
#
-# Implementation of LongJump() on IA-32.
+# Implementation of _LongJump() on IA-32.
#
#------------------------------------------------------------------------------
@@ -23,8 +23,8 @@
-.global _LongJump
-_LongJump:
+.global __LongJump
+__LongJump:
popl %eax
popl %edx
popl %eax