Use SmallVector instead.

llvm-svn: 29619
This commit is contained in:
Evan Cheng 2006-08-11 18:33:41 +00:00
parent 6f22ebd8be
commit 962752dcea
1 changed files with 1 additions and 1 deletions

View File

@ -2560,7 +2560,7 @@ public:
"(N.getOperand(N.getNumOperands()-1).getValueType() == MVT::Flag);");
}
if (HasVarOps)
emitCode("std::vector<SDOperand> Ops;");
emitCode("SmallVector<SDOperand, 8> Ops;");
// How many results is this pattern expected to produce?
unsigned PatResults = 0;