Make Transforms to be 4.3 warnings-clean
[oota-llvm.git] / lib / Transforms / IPO / Inliner.cpp
index ca8eec48b4a7b75e7a9ab741f057fae0de537c73..7ad7dc4c6ae57b7bad8f315e18ce4934a450d17c 100644 (file)
@@ -39,6 +39,9 @@ namespace {
 Inliner::Inliner(const void *ID) 
   : CallGraphSCCPass((intptr_t)ID), InlineThreshold(InlineLimit) {}
 
+Inliner::Inliner(const void *ID, int Threshold) 
+  : CallGraphSCCPass((intptr_t)ID), InlineThreshold(Threshold) {}
+
 /// getAnalysisUsage - For this class, we declare that we require and preserve
 /// the call graph.  If the derived class implements this method, it should
 /// always explicitly call the implementation here.