diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-09 18:31:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-09 18:31:39 +0000 |
commit | ed78f431edaabd7c488d326bd599abffc2b8a53c (patch) | |
tree | 8b35e021d41e4690e03d7fb6c59929a464a56f8f | |
parent | 583dd6072eed7a446dad8f0e796fa34aec40aa12 (diff) |
fix typo Duncan noticed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61997 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index c1a8eab95b..a183c14ba5 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -7712,7 +7712,7 @@ static bool FindElementAtOffset(const Type *Ty, int64_t Offset, FirstIdx = Offset/TySize; Offset %= TySize; - // Handle silly modulus not returning values values [0..TySize). + // Handle silly modulus not returning values [0..TySize). if (Offset < 0) { --FirstIdx; Offset += TySize; |