Skip to content

Commit

Permalink
fix a warning
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26941 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lattner committed Mar 22, 2006
1 parent b9df0ca commit 6df1154
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/Target/X86/X86ISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2216,14 +2216,15 @@ SDOperand X86TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
// Use unpcklpd
return DAG.getNode(X86ISD::UNPCKLP, VT, V1, V1);
// Leave the VECTOR_SHUFFLE alone. It matches SHUFP*.
break;
return SDOperand();
} else if (VT == MVT::v4f32 && X86::isPSHUFDMask(PermMask.Val))
// Leave the VECTOR_SHUFFLE alone. It matches PSHUFD.
break;
return SDOperand();
}

// TODO.
assert(0);
assert(0 && "TODO");
abort();
}
}
}
Expand Down

0 comments on commit 6df1154

Please sign in to comment.