Remove unused Target argument from AsmParser construction methods.
[oota-llvm.git] / include / llvm / ADT / IndexedMap.h
index 04c5815e35f2b460950dde69ff3c1fae9e7452d6..87126ea49187bc577f2b4793270b74c1a3f65693 100644 (file)
@@ -59,6 +59,10 @@ namespace llvm {
       storage_.reserve(s);
     }
 
+    void resize(typename StorageT::size_type s) {
+      storage_.resize(s, nullVal_);
+    }
+
     void clear() {
       storage_.clear();
     }
@@ -66,7 +70,7 @@ namespace llvm {
     void grow(IndexT n) {
       unsigned NewSize = toIndex_(n) + 1;
       if (NewSize > storage_.size())
-        storage_.resize(NewSize, nullVal_);
+        resize(NewSize);
     }
 
     bool inBounds(IndexT n) const {