From: David Green Date: Thu, 10 Mar 2022 15:03:27 +0000 (+0000) Subject: [AArch64] Fix type in comment. NFC X-Git-Tag: upstream/15.0.7~14031 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4899e2cab43f9f8af91282cae2f54203926644e5;p=platform%2Fupstream%2Fllvm.git [AArch64] Fix type in comment. NFC --- diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp index a31b08c..0489207 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)