diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-13 22:04:06 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-13 22:04:06 +0000 |
commit | e6b4babcbb10f571a0c50291b6551457c8085d2d (patch) | |
tree | 5ac68a80d968e888a6ebb6e47c1da7c4bcd48075 /llvm/lib/Analysis/ScalarEvolution.cpp | |
parent | 80a99425937dbb49d7dcf498eb2ae5af6d7a1352 (diff) | |
download | bcm5719-llvm-e6b4babcbb10f571a0c50291b6551457c8085d2d.tar.gz bcm5719-llvm-e6b4babcbb10f571a0c50291b6551457c8085d2d.zip |
Fix an 80-column violation.
llvm-svn: 75524
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 2dbc3485d0f..28012e020f4 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/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); |