aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-13 22:04:06 +0000
committerDan Gohman <gohman@apple.com>2009-07-13 22:04:06 +0000
commitba70188f895647f0a56bd69717ec3a0f7ed717df (patch)
treed0a8ff7e1f367b152c8ac5ffa4904177c70b0254 /lib/Analysis
parent16a2c927e95c29a316d0271c93e0490ce3bc06ce (diff)
downloadexternal_llvm-ba70188f895647f0a56bd69717ec3a0f7ed717df.zip
external_llvm-ba70188f895647f0a56bd69717ec3a0f7ed717df.tar.gz
external_llvm-ba70188f895647f0a56bd69717ec3a0f7ed717df.tar.bz2
Fix an 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75524 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/ScalarEvolution.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp
index 2dbc348..28012e0 100644
--- a/lib/Analysis/ScalarEvolution.cpp
+++ b/lib/Analysis/ScalarEvolution.cpp
@@ -3091,10 +3091,10 @@ ScalarEvolution::getBackedgeTakenInfo(const Loop *L) {
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);