Fix an obvious error.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75611 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bob Wilson 2009-07-14 06:06:28 +00:00
parent 03e9dd9ffa
commit a573f59628

View File

@ -159,8 +159,8 @@ const Type *MVT::getTypeForMVT(LLVMContext &Context) const {
case MVT::v32i8: return Context.getVectorType(Type::Int8Ty, 32);
case MVT::v2i16: return Context.getVectorType(Type::Int16Ty, 2);
case MVT::v4i16: return Context.getVectorType(Type::Int16Ty, 4);
case MVT::v8i16: return Context.getVectorType(Type::Int16Ty, 16);
case MVT::v16i16: return Context.getVectorType(Type::Int16Ty, 8);
case MVT::v8i16: return Context.getVectorType(Type::Int16Ty, 8);
case MVT::v16i16: return Context.getVectorType(Type::Int16Ty, 16);
case MVT::v2i32: return Context.getVectorType(Type::Int32Ty, 2);
case MVT::v3i32: return Context.getVectorType(Type::Int32Ty, 3);
case MVT::v4i32: return Context.getVectorType(Type::Int32Ty, 4);
@ -202,4 +202,4 @@ MVT MVT::getMVT(const Type *Ty, bool HandleUnknown){
VTy->getNumElements());
}
}
}
}