[llvm-commits] [llvm] r80595 - /llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp

Chris Lattner sabre at nondot.org
Mon Aug 31 10:08:31 PDT 2009


Author: lattner
Date: Mon Aug 31 12:08:30 2009
New Revision: 80595

URL: http://llvm.org/viewvc/llvm-project?rev=80595&view=rev
Log:
cleanups pointed out by duncan

Modified:
    llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp

Modified: llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp?rev=80595&r1=80594&r2=80595&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp (original)
+++ llvm/trunk/lib/Analysis/IPA/CallGraphSCCPass.cpp Mon Aug 31 12:08:30 2009
@@ -113,7 +113,7 @@
   }
   StopPassTimer(P);
   
-  // The the function pass(es) modified the IR, they may have clobbered the
+  // The function pass(es) modified the IR, they may have clobbered the
   // callgraph.
   if (Changed && CallGraphUpToDate) {
     DEBUG(errs() << "CGSCCPASSMGR: Pass Dirtied SCC: "
@@ -134,7 +134,6 @@
         );
 
   bool MadeChange = false;
-  MadeChange = MadeChange;
   
   // Scan all functions in the SCC.
   for (unsigned sccidx = 0, e = CurSCC.size(); sccidx != e; ++sccidx) {





More information about the llvm-commits mailing list