From: vanjeff Date: Wed, 31 May 2006 08:53:35 +0000 (+0000) Subject: Changed LongJump() to _LongJump() X-Git-Tag: edk2-stable201903~25379 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=6586cdf39577dfd7eaffa568f3c954e2c27fb45d;ds=sidebyside Changed LongJump() to _LongJump() git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@348 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Library/BaseLib/X64/LongJump.asm b/MdePkg/Library/BaseLib/X64/LongJump.asm index 6634778592..f913b6a2fa 100644 --- a/MdePkg/Library/BaseLib/X64/LongJump.asm +++ b/MdePkg/Library/BaseLib/X64/LongJump.asm @@ -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