summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library
diff options
context:
space:
mode:
authoreric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524>2009-12-07 03:31:44 +0000
committereric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524>2009-12-07 03:31:44 +0000
commit0e121f555118dc780e112ba1f49a949a241fd36d (patch)
tree1c5d83cc900bbc59b59222a965fc4989b1aa64eb /MdePkg/Library
parente567221141207c8f4bcf0ee7f68c574487df9778 (diff)
downloadedk2-0e121f555118dc780e112ba1f49a949a241fd36d.tar.gz
edk2-0e121f555118dc780e112ba1f49a949a241fd36d.tar.bz2
edk2-0e121f555118dc780e112ba1f49a949a241fd36d.zip
fix GCC build issue, mWait instruction need not the operands.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9526 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r--MdePkg/Library/BaseLib/X64/Mwait.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/X64/Mwait.S b/MdePkg/Library/BaseLib/X64/Mwait.S
index 238a9bc2ab..00565af8f8 100644
--- a/MdePkg/Library/BaseLib/X64/Mwait.S
+++ b/MdePkg/Library/BaseLib/X64/Mwait.S
@@ -34,5 +34,5 @@ ASM_GLOBAL ASM_PFX(AsmMwait)
ASM_PFX(AsmMwait):
mov %ecx,%eax
mov %edx,%ecx
- mwait %eax,%ecx
+ mwait
ret