diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp index a31b08cf289db..04892079ce2aa 100644 --- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp +++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp @@ -9772,7 +9772,7 @@ static SDValue GenerateTBL(SDValue Op, ArrayRef 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)