Remove unused Target argument from AsmParser construction methods.
[oota-llvm.git] / include / llvm / ADT / IndexedMap.h
index 78532bda3977140377b7521e4471e5867b201376..87126ea49187bc577f2b4793270b74c1a3f65693 100644 (file)
@@ -55,6 +55,14 @@ namespace llvm {
       return storage_[toIndex_(n)];
     }
 
+    void reserve(typename StorageT::size_type s) {
+      storage_.reserve(s);
+    }
+
+    void resize(typename StorageT::size_type s) {
+      storage_.resize(s, nullVal_);
+    }
+
     void clear() {
       storage_.clear();
     }
@@ -62,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 {