1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00

[X86] Add missing full stop to comment. NFCI.

llvm-svn: 328456
This commit is contained in:
Simon Pilgrim 2018-03-25 18:49:48 +00:00
parent 85ef67e8e2
commit 356047748b

View File

@ -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;