projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3577e38
)
Use SmallVector instead.
author
Evan Cheng
<evan.cheng@apple.com>
Fri, 11 Aug 2006 18:33:41 +0000
(18:33 +0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Fri, 11 Aug 2006 18:33:41 +0000
(18:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29619
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/TableGen/DAGISelEmitter.cpp
patch
|
blob
|
history
diff --git
a/utils/TableGen/DAGISelEmitter.cpp
b/utils/TableGen/DAGISelEmitter.cpp
index bcc192f9ae5e4ee638011017754020af2555c79a..08da0c09dcb1e8bc6f62c5bbb142e03f1807a72b 100644
(file)
--- 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;