Remove a bunch of empty, dead, and no-op methods from all of these
[oota-llvm.git] / lib / Transforms / IPO / InlineAlways.cpp
index ef7e45235e3141d4899c573445134d59ed7c622f..4e666fb54563970b1f0ab409f8906c82b3f91b9b 100644 (file)
@@ -61,19 +61,10 @@ namespace {
       // indirectbr.
       return CA.getInlineCost(CS, getInlineThreshold(CS));
     }
-    void resetCachedCostInfo(Function *Caller) {
-      CA.resetCachedCostInfo(Caller);
-    }
-    void growCachedCostInfo(Function* Caller, Function* Callee) {
-      CA.growCachedCostInfo(Caller, Callee);
-    }
     virtual bool doFinalization(CallGraph &CG) {
       return removeDeadFunctions(CG, /*AlwaysInlineOnly=*/true);
     }
     virtual bool doInitialization(CallGraph &CG);
-    void releaseMemory() {
-      CA.clear();
-    }
   };
 }