Replace EVT with MVT in isHorizontalBinOp as it is only called with legal types.

llvm-svn: 187779
This commit is contained in:
Craig Topper 2013-08-06 06:05:05 +00:00
parent e359e85649
commit 9bc00b65b6
1 changed files with 1 additions and 1 deletions

View File

@ -17721,7 +17721,7 @@ static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
RHS.getOpcode() != ISD::VECTOR_SHUFFLE) RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
return false; return false;
EVT VT = LHS.getValueType(); MVT VT = LHS.getValueType().getSimpleVT();
assert((VT.is128BitVector() || VT.is256BitVector()) && assert((VT.is128BitVector() || VT.is256BitVector()) &&
"Unsupported vector type for horizontal add/sub"); "Unsupported vector type for horizontal add/sub");