diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-01-10 22:14:06 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-01-10 22:14:06 +0000 |
commit | 1a8f0ccd8c90ab726a0312cf1092b44d38d9f470 (patch) | |
tree | fd8b137dca4b5b7233006d7093247b1006b9f43f | |
parent | 227b6279b6f1d0fca985dd2cd9ad600c8633c0a0 (diff) | |
download | bcm5719-llvm-1a8f0ccd8c90ab726a0312cf1092b44d38d9f470.tar.gz bcm5719-llvm-1a8f0ccd8c90ab726a0312cf1092b44d38d9f470.zip |
Add missing VEX predicates to VMOVSDto64rr/VMOVSDto64mr. This fixes a few
failing test cases on our internal AVX nightly tester.
rdar://10663637
llvm-svn: 147881
-rw-r--r-- | llvm/lib/Target/X86/X86InstrSSE.td | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86InstrSSE.td b/llvm/lib/Target/X86/X86InstrSSE.td index 95185f17f53..51cc7f384e5 100644 --- a/llvm/lib/Target/X86/X86InstrSSE.td +++ b/llvm/lib/Target/X86/X86InstrSSE.td @@ -4544,10 +4544,11 @@ def VMOV64toSDrm : S3SI<0x7E, MRMSrcMem, (outs FR64:$dst), (ins i64mem:$src), VEX; def VMOVSDto64rr : VRPDI<0x7E, MRMDestReg, (outs GR64:$dst), (ins FR64:$src), "mov{d|q}\t{$src, $dst|$dst, $src}", - [(set GR64:$dst, (bitconvert FR64:$src))]>; + [(set GR64:$dst, (bitconvert FR64:$src))]>, VEX; def VMOVSDto64mr : VRPDI<0x7E, MRMDestMem, (outs), (ins i64mem:$dst, FR64:$src), "movq\t{$src, $dst|$dst, $src}", - [(store (i64 (bitconvert FR64:$src)), addr:$dst)]>; + [(store (i64 (bitconvert FR64:$src)), addr:$dst)]>, + VEX; def MOV64toSDrm : S3SI<0x7E, MRMSrcMem, (outs FR64:$dst), (ins i64mem:$src), "movq\t{$src, $dst|$dst, $src}", |