From 3ff7ce36b5053be960f5b39a607e0fa37089bafc Mon Sep 17 00:00:00 2001 From: Daniel Sanders Date: Fri, 22 Nov 2013 13:22:52 +0000 Subject: [PATCH] Fix typo in a comment added in r195455. Credit to Matheus Almeida for spotting it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195456 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/MipsSEISelLowering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/Mips/MipsSEISelLowering.cpp b/lib/Target/Mips/MipsSEISelLowering.cpp index 0c9cecb7335..809adc03b15 100644 --- a/lib/Target/Mips/MipsSEISelLowering.cpp +++ b/lib/Target/Mips/MipsSEISelLowering.cpp @@ -2211,7 +2211,7 @@ SDValue MipsSETargetLowering::lowerBUILD_VECTOR(SDValue Op, // If the value fits into a simm10 then we can use ldi.[bhwd] // However, if it isn't an integer type we will have to bitcast from an - // integer type first. Also, it there are any undefs, we must lower them + // integer type first. Also, if there are any undefs, we must lower them // to defined values first. if (ResTy.isInteger() && !HasAnyUndefs && SplatValue.isSignedIntN(10)) return Op; -- 2.34.1