Use SmallVector instead.
llvm-svn: 29619
diff --git a/llvm/utils/TableGen/DAGISelEmitter.cpp b/llvm/utils/TableGen/DAGISelEmitter.cpp
index bcc192f..08da0c0 100644
--- a/llvm/utils/TableGen/DAGISelEmitter.cpp
+++ b/llvm/utils/TableGen/DAGISelEmitter.cpp
@@ -2560,7 +2560,7 @@
"(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;