diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-08-11 18:33:41 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-08-11 18:33:41 +0000 |
commit | 1e060f0242160f3fb44ff4f38e3a44d684e8a842 (patch) | |
tree | ca8dcc2931e01d89a2ddb11ff03ad58b13c670ba | |
parent | 3577e38c2b34c7978b8a1b6047eed3e421559d28 (diff) |
Use SmallVector instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29619 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/DAGISelEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp index bcc192f9ae..08da0c09dc 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<SDOperand> Ops;"); + emitCode("SmallVector<SDOperand, 8> Ops;"); // How many results is this pattern expected to produce? unsigned PatResults = 0; |