[X86] LowerAVG - fix cut+paste typo. NFC.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Sat, 14 May 2022 16:41:48 +0000 (17:41 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Sat, 14 May 2022 16:42:09 +0000 (17:42 +0100)
llvm/lib/Target/X86/X86ISelLowering.cpp

index 3ee8aa9..f80886a 100644 (file)
@@ -28591,7 +28591,7 @@ static SDValue LowerAVG(SDValue Op, const X86Subtarget &Subtarget,
                         SelectionDAG &DAG) {
   MVT VT = Op.getSimpleValueType();
 
-  // For AVX1 cases, split to use legal ops (everything but v4i64).
+  // For AVX1 cases, split to use legal ops.
   if (VT.is256BitVector() && !Subtarget.hasInt256())
     return splitVectorIntBinary(Op, DAG);