diff options
| author | Craig Topper <craig.topper@gmail.com> | 2013-07-23 01:21:36 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2013-07-23 01:21:36 +0000 |
| commit | 80c310056c235b4394a0fdf5b7fc15333767f636 (patch) | |
| tree | c38611849c32e467e4d8b59ba4fa2f430991b212 /llvm/lib | |
| parent | e6cbf1c04f352568fb383602124e7a4c0dfcca6d (diff) | |
| download | bcm5719-llvm-80c310056c235b4394a0fdf5b7fc15333767f636.tar.gz bcm5719-llvm-80c310056c235b4394a0fdf5b7fc15333767f636.zip | |
Don't let x86 asm printer use the no operand movsd alias. It should use the normal movsl instead.
llvm-svn: 186907
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>; |

