From: vanjeff Date: Wed, 31 May 2006 08:50:43 +0000 (+0000) Subject: change LongJump() to _LongJump() X-Git-Tag: edk2-stable201903~25383 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=e513625f2244bef3d2365120760fccbe2e8afe85 change LongJump() to _LongJump() git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@344 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Library/BaseLib/Ia32/LongJump.asm b/MdePkg/Library/BaseLib/Ia32/LongJump.asm index ff0cef2273..5b7e21aa4b 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 3da09142fc..4a36afc13f 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