From ed78f431edaabd7c488d326bd599abffc2b8a53c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 9 Jan 2009 18:31:39 +0000 Subject: [PATCH] fix typo Duncan noticed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61997 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/InstructionCombining.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index c1a8eab95b5..a183c14ba53 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; -- 2.34.1