disable my previous inliner patch, it appears to be busting self-host.
[oota-llvm.git] / lib / Transforms / IPO / Inliner.cpp
index 1de7b0753d20427dc6704e2c985ba8943b899f8e..322b4698756c42ed8bb7d87d98f4a1b9a0eb54fd 100644 (file)
@@ -390,9 +390,11 @@ bool Inliner::runOnSCC(CallGraphSCC &SCC) {
 
         // If inlining this function devirtualized any call sites, throw them
         // onto our worklist to process.  They are useful inline candidates.
+#if 0
         for (unsigned i = 0, e = InlineInfo.DevirtualizedCalls.size();
              i != e; ++i)
           CallSites.push_back(CallSite(InlineInfo.DevirtualizedCalls[i]));
+#endif
         
         // Update the cached cost info with the inlined call.
         growCachedCostInfo(Caller, Callee);