diff options
| -rw-r--r-- | llvm/utils/TableGen/DAGISelEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/DAGISelEmitter.cpp b/llvm/utils/TableGen/DAGISelEmitter.cpp index bcc192f9ae5..08da0c09dcb 100644 --- a/llvm/utils/TableGen/DAGISelEmitter.cpp +++ b/llvm/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; |

