remove #if 1's.
authorChris Lattner <sabre@nondot.org>
Sun, 25 Apr 2010 04:43:02 +0000 (04:43 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 25 Apr 2010 04:43:02 +0000 (04:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102296 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/Inliner.cpp

index 06ccf6407059d43faa2901bd0a13114830771d07..33c7d0172a2c6391179e98890586bb7789a6e755 100644 (file)
@@ -390,13 +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 1
         for (unsigned i = 0, e = InlineInfo.DevirtualizedCalls.size();
              i != e; ++i) {
           Value *Ptr = InlineInfo.DevirtualizedCalls[i];
           CallSites.push_back(CallSite(Ptr));
         }
-#endif
         
         // Update the cached cost info with the inlined call.
         growCachedCostInfo(Caller, Callee);