[llvm-commits] [llvm] r157882 - /llvm/trunk/include/llvm/Support/IntegersSubset.h

Stepan Dyatkovskiy stpworld at narod.ru
Sat Jun 2 01:03:34 PDT 2012


Author: dyatkovskiy
Date: Sat Jun  2 03:03:34 2012
New Revision: 157882

URL: http://llvm.org/viewvc/llvm-project?rev=157882&view=rev
Log:
Additional change for 157881. Forget to fix another IntegerSubset constructor.


Modified:
    llvm/trunk/include/llvm/Support/IntegersSubset.h

Modified: llvm/trunk/include/llvm/Support/IntegersSubset.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/IntegersSubset.h?rev=157882&r1=157881&r2=157882&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/IntegersSubset.h (original)
+++ llvm/trunk/include/llvm/Support/IntegersSubset.h Sat Jun  2 03:03:34 2012
@@ -432,9 +432,7 @@
   
   // 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(),





More information about the llvm-commits mailing list