[llvm] 4899e2c - [AArch64] Fix type in comment. NFC

David Green via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 10 07:03:31 PST 2022


Author: David Green
Date: 2022-03-10T15:03:27Z
New Revision: 4899e2cab43f9f8af91282cae2f54203926644e5

URL: https://github.com/llvm/llvm-project/commit/4899e2cab43f9f8af91282cae2f54203926644e5
DIFF: https://github.com/llvm/llvm-project/commit/4899e2cab43f9f8af91282cae2f54203926644e5.diff

LOG: [AArch64] Fix type in comment. NFC

Added: 
    

Modified: 
    llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

Removed: 
    


################################################################################
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<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)


        


More information about the llvm-commits mailing list