diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-19 06:30:40 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-19 06:30:40 +0000 |
commit | ec815813ce28b85eb9154c09c2d02460099a0186 (patch) | |
tree | 21d6c028861ec662045ed5b600dcfada6a090e44 /MdeModulePkg/Universal/DebugSupportDxe | |
parent | 9de780dcd6208557b89e98fc760bda919b14476f (diff) | |
download | edk2-platforms-ec815813ce28b85eb9154c09c2d02460099a0186.tar.xz |
fixed one bug to pass GCC.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7083 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/DebugSupportDxe')
-rw-r--r-- | MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S b/MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S index 7ac8a1a69a..7c854c1c88 100644 --- a/MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S +++ b/MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S @@ -296,10 +296,10 @@ ExtraPushDone: ## UINT64 Gdtr[2], Idtr[2];
push 0
push 0
- sidt qword ptr [rsp]
+ sidt [rsp]
push 0
push 0
- sgdt qword ptr [rsp]
+ sgdt [rsp]
## UINT64 Ldtr, Tr;
xor rax, rax
|