diff options
author | Craig Topper <craig.topper@gmail.com> | 2013-07-23 01:50:47 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2013-07-23 01:50:47 +0000 |
commit | db90f65bbe8bb490f9f3dd526af58e2c70aa3c97 (patch) | |
tree | 4a0bc910a0102fd4d244fb4c80332576af47c1ee /llvm/lib | |
parent | 5263948a7bc3df778ebd0961854a3226c64577b9 (diff) | |
download | bcm5719-llvm-db90f65bbe8bb490f9f3dd526af58e2c70aa3c97.tar.gz bcm5719-llvm-db90f65bbe8bb490f9f3dd526af58e2c70aa3c97.zip |
Don't let x86 asm printer use the no operand movsd alias. It should use the normal movsl instead.
llvm-svn: 186924
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index 9e5b6ff31d7..38196c69984 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/lib/Target/X86/X86InstrInfo.td @@ -2128,7 +2128,7 @@ def : InstAlias<"movq $src, $dst", // movsd with no operands (as opposed to the SSE scalar move of a double) is an // alias for movsl. (as in rep; movsd) -def : InstAlias<"movsd", (MOVSD)>; +def : InstAlias<"movsd", (MOVSD), 0>; // movsx aliases def : InstAlias<"movsx $src, $dst", (MOVSX16rr8 GR16:$dst, GR8:$src), 0>; |