From af7523495571e75c53ceebcef7de7d7e3adc417e Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 7 Jul 2009 17:06:11 +0000 Subject: Change all SCEV* to SCEV *. llvm-svn: 74918 --- llvm/lib/Transforms/Scalar/LoopDeletion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Transforms/Scalar/LoopDeletion.cpp') 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(); - const SCEV* S = SE.getBackedgeTakenCount(L); + const SCEV *S = SE.getBackedgeTakenCount(L); if (isa(S)) return false; -- cgit v1.2.3