[x86] Remove a FIXME that doesn't make any sense. Only the lanes feeding
authorChandler Carruth <chandlerc@gmail.com>
Tue, 16 Sep 2014 02:16:42 +0000 (02:16 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Tue, 16 Sep 2014 02:16:42 +0000 (02:16 +0000)
the blend that is matched by this are "used" in any sense, and so any
build_vector or other nodes feeding these will already drop other lanes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217855 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 1b0e4fc3bf438c9c586ddd1e980198c84ca9f1d1..401effb5cb1e360db40252f7d4c32f9c671ce655 100644 (file)
@@ -20033,9 +20033,6 @@ static SDValue combineShuffleToAddSub(SDNode *N, SelectionDAG &DAG) {
           VT == MVT::v4f64) &&
          "Unknown vector type encountered!");
 
-  // FIXME: Munge the inputs through no-op shuffles that drop the undef lanes to
-  // allow nuking any instructions that feed only those lanes.
-
   return DAG.getNode(X86ISD::ADDSUB, DL, VT, LHS, RHS);
 }