Changed LongJump() to _LongJump()

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@348 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff 2006-05-31 08:53:35 +00:00
parent 493b974b1b
commit 6586cdf395
1 changed files with 3 additions and 3 deletions

View File

@ -15,13 +15,13 @@
;
; Abstract:
;
; Implementation of LongJump() on x64.
; Implementation of _LongJump() on x64.
;
;------------------------------------------------------------------------------
.code
LongJump PROC
_LongJump PROC
mov rbx, [rcx]
mov rsp, [rcx + 8]
mov rbp, [rcx + 10h]
@ -33,6 +33,6 @@ LongJump PROC
mov r15, [rcx + 40h]
mov rax, rdx
jmp qword ptr [rcx + 48h]
LongJump ENDP
_LongJump ENDP
END