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:
e2c5318
)
Additional change for 157881. Forget to fix another IntegerSubset constructor.
author
Stepan Dyatkovskiy
<stpworld@narod.ru>
Sat, 2 Jun 2012 08:03:34 +0000
(08:03 +0000)
committer
Stepan Dyatkovskiy
<stpworld@narod.ru>
Sat, 2 Jun 2012 08:03:34 +0000
(08:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157882
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/IntegersSubset.h
patch
|
blob
|
history
diff --git
a/include/llvm/Support/IntegersSubset.h
b/include/llvm/Support/IntegersSubset.h
index ea3a8aee4f2bb278d5a37a1c9fad9ed738d9d2d1..b6ffe1b5014585ae1597d9eb199533d468735cea 100644
(file)
--- a/
include/llvm/Support/IntegersSubset.h
+++ b/
include/llvm/Support/IntegersSubset.h
@@
-432,9
+432,7
@@
public:
// implicit
template<class RangesCollectionTy>
- IntegersSubset(const RangesCollectionTy& Src) :
- IntegersSubsetGeneric(Src) {
-
+ IntegersSubset(const RangesCollectionTy& Src) : ParentTy(Src) {
std::vector<Constant*> Elts;
Elts.reserve(Src.size());
for (typename RangesCollectionTy::const_iterator i = Src.begin(),