diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-05-15 10:04:30 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-05-15 10:04:30 +0000 |
commit | b91ea9d5ae92622ca2100feb19af1bc7e784abbd (patch) | |
tree | ad561cfaa4f194770a4167e80e26ec2bbb99f956 /lib/Transforms/Scalar/LoopRotation.cpp | |
parent | 57fc62dd62fcd3c5299052719cd8e18eda409db5 (diff) | |
download | external_llvm-b91ea9d5ae92622ca2100feb19af1bc7e784abbd.tar.gz external_llvm-b91ea9d5ae92622ca2100feb19af1bc7e784abbd.tar.bz2 external_llvm-b91ea9d5ae92622ca2100feb19af1bc7e784abbd.zip |
Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile targets to find these better.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51143 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopRotation.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopRotation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopRotation.cpp b/lib/Transforms/Scalar/LoopRotation.cpp index d8362a5500..08d557e983 100644 --- a/lib/Transforms/Scalar/LoopRotation.cpp +++ b/lib/Transforms/Scalar/LoopRotation.cpp @@ -471,7 +471,8 @@ void LoopRotate::preserveCanonicalLoopForm(LPPassManager &LPM) { // Right now original pre-header has two successors, new header and // exit block. Insert new block between original pre-header and // new header such that loop's new pre-header has only one successor. - BasicBlock *NewPreHeader = BasicBlock::Create("bb.nph", OrigHeader->getParent(), + BasicBlock *NewPreHeader = BasicBlock::Create("bb.nph", + OrigHeader->getParent(), NewHeader); LoopInfo &LI = LPM.getAnalysis<LoopInfo>(); if (Loop *PL = LI.getLoopFor(OrigPreHeader)) |