From: Evan Cheng Date: Fri, 11 Aug 2006 18:33:41 +0000 (+0000) Subject: Use SmallVector instead. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1e060f0242160f3fb44ff4f38e3a44d684e8a842;p=oota-llvm.git 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 bcc192f9ae5..08da0c09dcb 100644 --- a/utils/TableGen/DAGISelEmitter.cpp +++ b/utils/TableGen/DAGISelEmitter.cpp @@ -2560,7 +2560,7 @@ public: "(N.getOperand(N.getNumOperands()-1).getValueType() == MVT::Flag);"); } if (HasVarOps) - emitCode("std::vector Ops;"); + emitCode("SmallVector Ops;"); // How many results is this pattern expected to produce? unsigned PatResults = 0;