From: Craig Topper Date: Tue, 23 Jul 2013 01:21:36 +0000 (+0000) Subject: Don't let x86 asm printer use the no operand movsd alias. It should use the normal... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=36945d3d2665cec0477346e163e4c9a9eb991a62;p=oota-llvm.git Don't let x86 asm printer use the no operand movsd alias. It should use the normal movsl instead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186907 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 9e5b6ff31d7..38196c69984 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/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>;