aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/LoopRotation.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-14 23:32:02 +0000
committerChris Lattner <sabre@nondot.org>2007-04-14 23:32:02 +0000
commite34e9a29dc424baed8aed200c6a940f2c12c2a2f (patch)
treeaf7ca6cbdb1b31d620ceeb23e8fd2e5c1b0eea20 /lib/Transforms/Scalar/LoopRotation.cpp
parent024a126303aef754e1099c822428c44ee6e2bcba (diff)
downloadexternal_llvm-e34e9a29dc424baed8aed200c6a940f2c12c2a2f.zip
external_llvm-e34e9a29dc424baed8aed200c6a940f2c12c2a2f.tar.gz
external_llvm-e34e9a29dc424baed8aed200c6a940f2c12c2a2f.tar.bz2
fix long lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopRotation.cpp')
-rw-r--r--lib/Transforms/Scalar/LoopRotation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/LoopRotation.cpp b/lib/Transforms/Scalar/LoopRotation.cpp
index 783056d..b9db3f6 100644
--- a/lib/Transforms/Scalar/LoopRotation.cpp
+++ b/lib/Transforms/Scalar/LoopRotation.cpp
@@ -315,7 +315,7 @@ bool LoopRotate::rotateLoop(Loop *Lp, LPPassManager &LPM) {
// Used inside Exit Block. Since we are in LCSSA form, U must be PHINode.
assert (U->getParent() == Exit
&& "Need to propagate new PHI into Exit blocks");
- assert (isa<PHINode>(U) && "Use in Exit Block that is not PHINode");
+ assert (isa<PHINode>(U) && "Use in Exit Block that is not PHINode");
PHINode *UPhi = cast<PHINode>(U);
@@ -372,7 +372,7 @@ void LoopRotate::updateExitBlock() {
Value *V = PN->getIncomingValueForBlock(OrigHeader);
if (isa<Instruction>(V) &&
(ILoopHeaderInfo = findReplacementData(cast<Instruction>(V)))) {
- assert (ILoopHeaderInfo->PreHeader && "Missing New Preheader Instruction");
+ assert(ILoopHeaderInfo->PreHeader && "Missing New Preheader Instruction");
PN->addIncoming(ILoopHeaderInfo->PreHeader, OrigPreHeader);
} else {
PN->addIncoming(V, OrigPreHeader);