diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-05-06 04:03:18 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-05-06 04:03:18 +0000 |
commit | 347e42252f2325ddc3e8dad15436c6f5faf0c9a9 (patch) | |
tree | 08395c7be78e5de33163ae892d198b4c2535a290 /lib/Analysis/ScalarEvolution.cpp | |
parent | c74d8f914db01c4801357eef988dc37366fa08dd (diff) | |
download | external_llvm-347e42252f2325ddc3e8dad15436c6f5faf0c9a9.zip external_llvm-347e42252f2325ddc3e8dad15436c6f5faf0c9a9.tar.gz external_llvm-347e42252f2325ddc3e8dad15436c6f5faf0c9a9.tar.bz2 |
Fix typo and indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50706 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 0a58f2b..b757531 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -1981,7 +1981,7 @@ SCEVHandle ScalarEvolutionsImpl::ComputeIterationCount(const Loop *L) { } case ICmpInst::ICMP_UGT: { SCEVHandle TC = HowManyLessThans(SE.getNotSCEV(LHS), - SE.getNotSCEV(RHS), L, false); + SE.getNotSCEV(RHS), L, false); if (!isa<SCEVCouldNotCompute>(TC)) return TC; break; } @@ -2045,7 +2045,7 @@ GetAddressedElementFromGlobal(GlobalVariable *GV, } /// ComputeLoadConstantCompareIterationCount - Given an exit condition of -/// 'icmp op load X, cst', try to se if we can compute the trip count. +/// 'icmp op load X, cst', try to see if we can compute the trip count. SCEVHandle ScalarEvolutionsImpl:: ComputeLoadConstantCompareIterationCount(LoadInst *LI, Constant *RHS, const Loop *L, |