diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-04-13 23:36:21 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-04-13 23:36:21 +0000 |
commit | 6dd69d924189be83b21c17aacba67f98a93933c5 (patch) | |
tree | 6204448e3568728cedfb3760723a3e4227218eb1 /llvm/lib | |
parent | 9c12834eed69539da9ad0333ba5d0b2a00de5070 (diff) | |
download | bcm5719-llvm-6dd69d924189be83b21c17aacba67f98a93933c5.tar.gz bcm5719-llvm-6dd69d924189be83b21c17aacba67f98a93933c5.zip |
Add an option to not print the alias of an instruction. It defaults to "print
the alias".
llvm-svn: 129485
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index f832a7c85a8..251b2fa1704 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/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) |