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

llvm-svn: 157882
This commit is contained in:
Stepan Dyatkovskiy 2012-06-02 08:03:34 +00:00
parent f49b393c04
commit cab9603622
1 changed files with 1 additions and 3 deletions

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