diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-02 07:58:31 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-02 07:58:31 +0000 |
commit | 7d7c2b4640a6b46eed90af5777f8d22504519a8e (patch) | |
tree | 9c0a04ff526f8204c6977720cea02847871fec41 /MdePkg/Library/BaseLib/X64 | |
parent | 6fc80a45b523d64f078f3d42f0994a36c02b8786 (diff) | |
download | edk2-platforms-7d7c2b4640a6b46eed90af5777f8d22504519a8e.tar.xz |
Deleted x64\SwitchStack.c Ipf/SwitchStack.c.
Added SwitchStack.c in Baselib\
Rename Ia32/SwitchStack.c to Ia32/InternalSwitchStack.c
Changed _SwitchStack() into InternalSwitchStack() in SwitchStack.asm and SwitchStack.s
Fixed one bug in LinkedList.c, that List length couldn't up to PcdMaximumLinkedListLength.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@394 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/X64')
-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 a1304ca295..53d1417f0b 100644 --- a/MdePkg/Library/BaseLib/X64/SwitchStack.asm +++ b/MdePkg/Library/BaseLib/X64/SwitchStack.asm @@ -36,12 +36,12 @@ ; None
;
;------------------------------------------------------------------------------
-_SwitchStack PROC
+InternalSwitchStack PROC
mov rax, rcx
mov rcx, rdx
mov rdx, r8
lea rsp, [r9 - 20h]
call rax
-_SwitchStack ENDP
+InternalSwitchStack ENDP
END
|