[llvm] r241268 - Remove whitespace from start of line, NFC.

Yaron Keren yaron.keren at gmail.com
Thu Jul 2 07:25:09 PDT 2015


Author: yrnkrn
Date: Thu Jul  2 09:25:09 2015
New Revision: 241268

URL: http://llvm.org/viewvc/llvm-project?rev=241268&view=rev
Log:
Remove whitespace from start of line, NFC.


Modified:
    llvm/trunk/lib/Transforms/IPO/Inliner.cpp

Modified: llvm/trunk/lib/Transforms/IPO/Inliner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/Inliner.cpp?rev=241268&r1=241267&r2=241268&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/IPO/Inliner.cpp (original)
+++ llvm/trunk/lib/Transforms/IPO/Inliner.cpp Thu Jul  2 09:25:09 2015
@@ -481,7 +481,7 @@ bool Inliner::runOnSCC(CallGraphSCC &SCC
   // If there are no calls in this function, exit early.
   if (CallSites.empty())
     return false;
-  
+
   // Now that we have all of the call sites, move the ones to functions in the
   // current SCC to the end of the list.
   unsigned FirstCallInSCC = CallSites.size();
@@ -591,7 +591,7 @@ bool Inliner::runOnSCC(CallGraphSCC &SCC
         DEBUG(dbgs() << "    -> Deleting dead function: "
               << Callee->getName() << "\n");
         CallGraphNode *CalleeNode = CG[Callee];
-        
+
         // Remove any call graph edges from the callee to its callees.
         CalleeNode->removeAllCalledFunctions();
         





More information about the llvm-commits mailing list