summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86InstrInfo.td
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-04-13 23:36:21 +0000
committerBill Wendling <isanbard@gmail.com>2011-04-13 23:36:21 +0000
commiteef965f04bab483a7d2fd46a7d51559197eda5cf (patch)
tree5a6d73f119f42cc74f3770d70a0e929cfc0e5b14 /lib/Target/X86/X86InstrInfo.td
parent7adf862eb24f7c6cbf12fbc9e3e8229f6f863b8a (diff)
downloadllvm-eef965f04bab483a7d2fd46a7d51559197eda5cf.tar.gz
llvm-eef965f04bab483a7d2fd46a7d51559197eda5cf.tar.bz2
llvm-eef965f04bab483a7d2fd46a7d51559197eda5cf.tar.xz
Add an option to not print the alias of an instruction. It defaults to "print
the alias". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129485 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrInfo.td')
-rw-r--r--lib/Target/X86/X86InstrInfo.td6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td
index f832a7c85a..251b2fa170 100644
--- a/lib/Target/X86/X86InstrInfo.td
+++ b/lib/Target/X86/X86InstrInfo.td
@@ -1534,8 +1534,10 @@ def : InstAlias<"mov $seg, $mem", (MOV32ms i32mem:$mem, SEGMENT_REG:$seg)>;
def : InstAlias<"movq $imm, $reg", (MOV64ri GR64:$reg, i64imm:$imm)>;
// Match 'movq GR64, MMX' as an alias for movd.
-def : InstAlias<"movq $src, $dst", (MMX_MOVD64to64rr VR64:$dst, GR64:$src)>;
-def : InstAlias<"movq $src, $dst", (MMX_MOVD64from64rr GR64:$dst, VR64:$src)>;
+def : InstAlias<"movq $src, $dst",
+ (MMX_MOVD64to64rr VR64:$dst, GR64:$src), 0b0>;
+def : InstAlias<"movq $src, $dst",
+ (MMX_MOVD64from64rr GR64:$dst, VR64:$src), 0b0>;
// movsd with no operands (as opposed to the SSE scalar move of a double) is an
// alias for movsl. (as in rep; movsd)