From: Yaron Keren <yaron.keren@gmail.com>
Date: Thu, 2 Jul 2015 14:17:12 +0000 (+0000)
Subject: Delete whitespace at start of line.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=016970f46886bf25bd1e941b9d9ff6e55cff032f;p=oota-llvm.git

Delete whitespace at start of line.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241265 91177308-0d34-0410-b5e6-96231b3b80d8
---

diff --git a/lib/Analysis/IPA/CallGraphSCCPass.cpp b/lib/Analysis/IPA/CallGraphSCCPass.cpp
index 6b3e0634626..07b389a2a13 100644
--- a/lib/Analysis/IPA/CallGraphSCCPass.cpp
+++ b/lib/Analysis/IPA/CallGraphSCCPass.cpp
@@ -451,7 +451,7 @@ bool CGPassManager::runOnModule(Module &M) {
     const std::vector<CallGraphNode *> &NodeVec = *CGI;
     CurSCC.initialize(NodeVec.data(), NodeVec.data() + NodeVec.size());
     ++CGI;
-    
+
     // At the top level, we run all the passes in this pass manager on the
     // functions in this SCC.  However, we support iterative compilation in the
     // case where a function pass devirtualizes a call to a function.  For