diff options
author | David Kreitzer <dkreitzer@nvidia.com> | 2022-04-29 12:26:13 -0700 |
---|---|---|
committer | David Kreitzer <dkreitzer@nvidia.com> | 2022-04-29 16:18:09 -0700 |
commit | 6918a15f431541136f85e2dd8d41c23d78d1124b (patch) | |
tree | 47c8037741196e2e70041fd8aaa18473258520e4 | |
parent | 9db0037bf1b36833295a765c040af3a07290f73c (diff) | |
download | llvm-6918a15f431541136f85e2dd8d41c23d78d1124b.zip llvm-6918a15f431541136f85e2dd8d41c23d78d1124b.tar.gz llvm-6918a15f431541136f85e2dd8d41c23d78d1124b.tar.bz2 |
Test commit. Fixed a typo in a comment.
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp b/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp index ce71415..a184159 100644 --- a/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp +++ b/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp @@ -1275,7 +1275,7 @@ bool AArch64TTIImpl::isWideningInstruction(Type *DstTy, unsigned Opcode, ArrayRef<const Value *> Args) { // A helper that returns a vector type from the given type. The number of - // elements in type Ty determine the vector width. + // elements in type Ty determines the vector width. auto toVectorTy = [&](Type *ArgTy) { return VectorType::get(ArgTy->getScalarType(), cast<VectorType>(DstTy)->getElementCount()); |