[llvm-commits] [llvm] r97933 - /llvm/trunk/lib/Target/X86/X86InstrSSE.td

Chris Lattner sabre at nondot.org
Sun Mar 7 19:18:28 PST 2010


Author: lattner
Date: Sun Mar  7 21:18:28 2010
New Revision: 97933

URL: http://llvm.org/viewvc/llvm-project?rev=97933&view=rev
Log:
remove a non-temporal store pattern which is not tested and 
could never have matched because the operand list was backwards.

Modified:
    llvm/trunk/lib/Target/X86/X86InstrSSE.td

Modified: llvm/trunk/lib/Target/X86/X86InstrSSE.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrSSE.td?rev=97933&r1=97932&r2=97933&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrSSE.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrSSE.td Sun Mar  7 21:18:28 2010
@@ -1090,9 +1090,6 @@
                     "movntdq\t{$src, $dst|$dst, $src}",
                     [(alignednontemporalstore (v2f64 VR128:$src), addr:$dst)]>;
 
-def : Pat<(alignednontemporalstore (v2i64 VR128:$src), addr:$dst),
-          (MOVNTDQ_64mr VR128:$src, addr:$dst)>;
-
 def MOVNTImr : I<0xC3, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
                  "movnti\t{$src, $dst|$dst, $src}",
                  [(nontemporalstore (i32 GR32:$src), addr:$dst)]>,





More information about the llvm-commits mailing list