diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-31 08:54:07 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-31 08:54:07 +0000 |
commit | 86d9a2e25ed70533e24fc7ad274ccdf6498db864 (patch) | |
tree | e4cff9dd65b209b20fff76e08324e736ebee7ca8 /MdePkg/Library/BaseLib | |
parent | 6586cdf39577dfd7eaffa568f3c954e2c27fb45d (diff) | |
download | edk2-platforms-86d9a2e25ed70533e24fc7ad274ccdf6498db864.tar.xz |
Changed SwitchStack() to _SwitchStack()
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@349 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib')
-rw-r--r-- | MdePkg/Library/BaseLib/X64/SwitchStack.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/BaseLib/X64/SwitchStack.asm b/MdePkg/Library/BaseLib/X64/SwitchStack.asm index 0dfddc011b..a1304ca295 100644 --- a/MdePkg/Library/BaseLib/X64/SwitchStack.asm +++ b/MdePkg/Library/BaseLib/X64/SwitchStack.asm @@ -36,12 +36,12 @@ ; None
;
;------------------------------------------------------------------------------
-SwitchStack PROC
+_SwitchStack PROC
mov rax, rcx
mov rcx, rdx
mov rdx, r8
lea rsp, [r9 - 20h]
call rax
-SwitchStack ENDP
+_SwitchStack ENDP
END
|