diff options
author | Dan Gohman <gohman@apple.com> | 2009-02-20 21:06:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-02-20 21:06:57 +0000 |
commit | 6b38e29f13cb8700146e4b170567e2828553db9a (patch) | |
tree | c49ca3b38eda48321a85bb0b9c51a3dfd2637d13 | |
parent | f0baa6e9cba77f54cee438e9a10e41c37789403e (diff) |
Fix 80-column violations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65159 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/LoopStrengthReduce.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index b03dcf4e66..ab8afe1001 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -1644,8 +1644,9 @@ static void SortUsersToProcess(std::vector<BasedUser> &UsersToProcess) { } } -/// PrepareToStrengthReduceFully - Prepare to fully strength-reduce UsersToProcess, -/// meaning lowering addresses all the way down to direct pointer arithmetic. +/// PrepareToStrengthReduceFully - Prepare to fully strength-reduce +/// UsersToProcess, meaning lowering addresses all the way down to direct +/// pointer arithmetic. /// void LoopStrengthReduce::PrepareToStrengthReduceFully( @@ -1822,8 +1823,8 @@ void LoopStrengthReduce::StrengthReduceStridedIVUsers(const SCEVHandle &Stride, // If all uses are addresses, check if it is possible to reuse an IV with a // stride that is a factor of this stride. And that the multiple is a number // that can be encoded in the scale field of the target addressing mode. And - // that we will have a valid instruction after this substition, including the - // immediate field, if any. + // that we will have a valid instruction after this substition, including + // the immediate field, if any. RewriteFactor = CheckForIVReuse(HaveCommonExprs, AllUsesAreAddresses, AllUsesAreOutsideLoop, Stride, ReuseIV, CommonExprs->getType(), |