Use SmallVector instead.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29619 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp
index bcc192f..08da0c0 100644
--- a/utils/TableGen/DAGISelEmitter.cpp
+++ b/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;