diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-07 17:06:11 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-07 17:06:11 +0000 |
commit | af7523495571e75c53ceebcef7de7d7e3adc417e (patch) | |
tree | cce660983ac0d610ec8c67b5a481399090c3a5b6 /llvm/lib/Transforms/Scalar/LoopDeletion.cpp | |
parent | 2074977695fec92e0c966d9fd85f56ababec637b (diff) | |
download | bcm5719-llvm-af7523495571e75c53ceebcef7de7d7e3adc417e.tar.gz bcm5719-llvm-af7523495571e75c53ceebcef7de7d7e3adc417e.zip |
Change all SCEV* to SCEV *.
llvm-svn: 74918
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopDeletion.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopDeletion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopDeletion.cpp b/llvm/lib/Transforms/Scalar/LoopDeletion.cpp index 302cdec2ba4..76a773a8081 100644 --- a/llvm/lib/Transforms/Scalar/LoopDeletion.cpp +++ b/llvm/lib/Transforms/Scalar/LoopDeletion.cpp @@ -187,7 +187,7 @@ bool LoopDeletion::runOnLoop(Loop* L, LPPassManager& LPM) { // Don't remove loops for which we can't solve the trip count. // They could be infinite, in which case we'd be changing program behavior. ScalarEvolution& SE = getAnalysis<ScalarEvolution>(); - const SCEV* S = SE.getBackedgeTakenCount(L); + const SCEV *S = SE.getBackedgeTakenCount(L); if (isa<SCEVCouldNotCompute>(S)) return false; |