commit | ed78f431edaabd7c488d326bd599abffc2b8a53c | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Jan 09 18:31:39 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Jan 09 18:31:39 2009 +0000 |
tree | 8b35e021d41e4690e03d7fb6c59929a464a56f8f | |
parent | 583dd6072eed7a446dad8f0e796fa34aec40aa12 [diff] [blame] |
fix typo Duncan noticed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61997 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index c1a8eab..a183c14 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -7712,7 +7712,7 @@ 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;