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

View File

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