Additional change for 157881. Forget to fix another IntegerSubset constructor.
authorStepan Dyatkovskiy <stpworld@narod.ru>
Sat, 2 Jun 2012 08:03:34 +0000 (08:03 +0000)
committerStepan 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

index ea3a8aee4f2bb278d5a37a1c9fad9ed738d9d2d1..b6ffe1b5014585ae1597d9eb199533d468735cea 100644 (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(),