[llvm-commits] [llvm] r75524 - /llvm/trunk/lib/Analysis/ScalarEvolution.cpp

Dan Gohman gohman at apple.com
Mon Jul 13 15:04:06 PDT 2009


Author: djg
Date: Mon Jul 13 17:04:06 2009
New Revision: 75524

URL: http://llvm.org/viewvc/llvm-project?rev=75524&view=rev
Log:
Fix an 80-column violation.

Modified:
    llvm/trunk/lib/Analysis/ScalarEvolution.cpp

Modified: llvm/trunk/lib/Analysis/ScalarEvolution.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ScalarEvolution.cpp?rev=75524&r1=75523&r2=75524&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolution.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolution.cpp Mon Jul 13 17:04:06 2009
@@ -3091,10 +3091,10 @@
         if (It != Scalars.end()) {
           // SCEVUnknown for a PHI either means that it has an unrecognized
           // structure, or it's a PHI that's in the progress of being computed
-          // by createNodeForPHI.  In the former case, additional loop trip count
-          // information isn't going to change anything. In the later case,
-          // createNodeForPHI will perform the necessary updates on its own when
-          // it gets to that point.
+          // by createNodeForPHI.  In the former case, additional loop trip
+          // count information isn't going to change anything. In the later
+          // case, createNodeForPHI will perform the necessary updates on its
+          // own when it gets to that point.
           if (!isa<PHINode>(I) || !isa<SCEVUnknown>(It->second))
             Scalars.erase(It);
           ValuesAtScopes.erase(I);





More information about the llvm-commits mailing list