diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-06 04:07:24 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-06 04:07:24 +0000 |
commit | d9da5f59821732d18bcb8f1cc2c6615e83725b2b (patch) | |
tree | 28eca540d50e4663e4c23d531e350d511b331c23 /MdePkg/Library/BaseLib/X64 | |
parent | d6ac6b76a87152b3a42f2688daadd3ee63f7823b (diff) | |
download | edk2-platforms-d9da5f59821732d18bcb8f1cc2c6615e83725b2b.tar.xz |
1. Sync LinkedList.c with MWG
2. Fix one bug in Ipf/InterlockedCompareExchange64.s
3. Fix one bug in AsmDisablePaging64()
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@786 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/X64')
-rw-r--r-- | MdePkg/Library/BaseLib/X64/DisablePaging64.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/X64/DisablePaging64.asm b/MdePkg/Library/BaseLib/X64/DisablePaging64.asm index 3134e42571..7b1e1b8bd2 100644 --- a/MdePkg/Library/BaseLib/X64/DisablePaging64.asm +++ b/MdePkg/Library/BaseLib/X64/DisablePaging64.asm @@ -26,7 +26,8 @@ InternalX86DisablePaging64 PROC
cli
shl rcx, 32
- lea ecx, @F
+ lea eax, @F
+ mov ecx, eax
push rcx
mov ebx, edx
mov esi, r8d
|