change LongJump() to _LongJump()

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@344 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff
2006-05-31 08:50:43 +00:00
parent c39b1ee3cd
commit e513625f22
2 changed files with 6 additions and 6 deletions

View File

@@ -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