[llvm] r268183 - [X86] Remove a seemlingly unused pattern. The same pattern appears elsewhere with an AddedComplexity that made this unreachable.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Sat Apr 30 22:22:14 PDT 2016


Author: ctopper
Date: Sun May  1 00:22:13 2016
New Revision: 268183

URL: http://llvm.org/viewvc/llvm-project?rev=268183&view=rev
Log:
[X86] Remove a seemlingly unused pattern. The same pattern appears elsewhere with an AddedComplexity that made this unreachable.

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=268183&r1=268182&r2=268183&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrSSE.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrSSE.td Sun May  1 00:22:13 2016
@@ -7250,8 +7250,6 @@ let Predicates = [UseSSE41] in {
   let AddedComplexity = 15 in
   def : Pat<(v4i32 (X86vzmovl (v4i32 VR128:$src))),
             (PBLENDWrri (v4i32 (V_SET0)), VR128:$src, (i8 3))>;
-  def : Pat<(v2f64 (X86vzmovl (v2f64 VR128:$src))),
-            (BLENDPDrri (v2f64 (V_SET0)), VR128:$src, (i8 1))>;
 }
 
 




More information about the llvm-commits mailing list