Additional change for 157881. Forget to fix another IntegerSubset constructor.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157882 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Stepan Dyatkovskiy 2012-06-02 08:03:34 +00:00
parent e2c53188ea
commit 4524dd7518

View File

@ -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(),