[TableGen] Use SmallVector::assign instead of a resize and replace element.

llvm-svn: 253960
This commit is contained in:
Craig Topper 2015-11-24 08:20:41 +00:00
parent 7494dc5e55
commit 4856c81b46
1 changed files with 1 additions and 2 deletions

View File

@ -194,8 +194,7 @@ bool EEVT::TypeSet::MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP){
// multiple different integer types, replace them with a single iPTR.
if ((InVT.TypeVec[0] == MVT::iPTR || InVT.TypeVec[0] == MVT::iPTRAny) &&
TypeVec.size() != 1) {
TypeVec.resize(1);
TypeVec[0] = InVT.TypeVec[0];
TypeVec.assign(1, InVT.TypeVec[0]);
MadeChange = true;
}