[AArch64] Fix type in comment. NFC
authorDavid Green <david.green@arm.com>
Thu, 10 Mar 2022 15:03:27 +0000 (15:03 +0000)
committerDavid Green <david.green@arm.com>
Thu, 10 Mar 2022 15:03:27 +0000 (15:03 +0000)
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

index a31b08c..0489207 100644 (file)
@@ -9772,7 +9772,7 @@ static SDValue GenerateTBL(SDValue Op, ArrayRef<int> ShuffleMask,
   SDValue V2Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V2);
 
   SDValue Shuffle;
-  // If the V2 source if undef or zero then we can use a tbl1, as tbl1 will fill
+  // If the V2 source is undef or zero then we can use a tbl1, as tbl1 will fill
   // out of range values with 0s.
   if (V2.isUndef() || isZerosVector(V2.getNode())) {
     if (IndexLen == 8)