diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/X64/SetJump.S')
-rw-r--r-- | MdePkg/Library/BaseLib/X64/SetJump.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseLib/X64/SetJump.S b/MdePkg/Library/BaseLib/X64/SetJump.S index eaaa43bf98..727a2a5c86 100644 --- a/MdePkg/Library/BaseLib/X64/SetJump.S +++ b/MdePkg/Library/BaseLib/X64/SetJump.S @@ -19,12 +19,12 @@ # #------------------------------------------------------------------------------ -.extern InternalAssertJumpBuffer; -.global _SetJump; -_SetJump: +.extern ASM_PFX(InternalAssertJumpBuffer) +.global ASM_PFX(SetJump) +ASM_PFX(SetJump): push %rcx add $0xffffffffffffffe0,%rsp - call _InternalAssertJumpBuffer + call ASM_PFX(InternalAssertJumpBuffer) add $0x20,%rsp pop %rcx pop %rdx |