[llvm-commits] [llvm] r61997 - /llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
Chris Lattner
sabre at nondot.org
Fri Jan 9 10:31:39 PST 2009
Author: lattner
Date: Fri Jan 9 12:31:39 2009
New Revision: 61997
URL: http://llvm.org/viewvc/llvm-project?rev=61997&view=rev
Log:
fix typo Duncan noticed.
Modified:
llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp?rev=61997&r1=61996&r2=61997&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp Fri Jan 9 12:31:39 2009
@@ -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;
More information about the llvm-commits
mailing list