From 356047748be266728f2b3ff36de3afb30fe4a9ea Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sun, 25 Mar 2018 18:49:48 +0000 Subject: [PATCH] [X86] Add missing full stop to comment. NFCI. llvm-svn: 328456 --- lib/Target/X86/X86ISelLowering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 846c6612239..8e9e090263e 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -18274,7 +18274,7 @@ static SDValue LowerVSETCC(SDValue Op, const X86Subtarget &Subtarget, } // If this is a SETNE against the signed minimum value, change it to SETGT. - // If this is a SETNE against the signed maximum value, change it to SETLT + // If this is a SETNE against the signed maximum value, change it to SETLT. // which will be swapped to SETGT. // Otherwise we use PCMPEQ+invert. APInt ConstValue;