forked from OSchip/llvm-project
Additional change for 157881. Forget to fix another IntegerSubset constructor.
llvm-svn: 157882
This commit is contained in:
parent
f49b393c04
commit
cab9603622
|
@ -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(),
|
||||
|
|
Loading…
Reference in New Issue