diff options
author | Rageking8 <tomleetyt@gmail.com> | 2022-11-08 07:21:23 -0500 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2022-11-08 07:21:23 -0500 |
commit | 94738a5ac34283bb034b022602b9f9e93d67081f (patch) | |
tree | 447d35886b076c757eb2a409cee06016bd196fd8 /clang/lib/Sema/SemaChecking.cpp | |
parent | 4b0fd43512acaf7e167a27fb143f679775e09247 (diff) | |
download | llvm-94738a5ac34283bb034b022602b9f9e93d67081f.zip llvm-94738a5ac34283bb034b022602b9f9e93d67081f.tar.gz llvm-94738a5ac34283bb034b022602b9f9e93d67081f.tar.bz2 |
Fix duplicate word typos; NFC
This revision fixes typos where there are 2 consecutive words which are
duplicated. There should be no code changes in this revision (only
changes to comments and docs). Do let me know if there are any
undesirable changes in this revision. Thanks.
Diffstat (limited to 'clang/lib/Sema/SemaChecking.cpp')
-rw-r--r-- | clang/lib/Sema/SemaChecking.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp index 4c60c38..25d746e 100644 --- a/clang/lib/Sema/SemaChecking.cpp +++ b/clang/lib/Sema/SemaChecking.cpp @@ -5557,7 +5557,7 @@ static void CheckNonNullArguments(Sema &S, SourceLocation CallSiteLoc) { assert((FDecl || Proto) && "Need a function declaration or prototype"); - // Already checked by by constant evaluator. + // Already checked by constant evaluator. if (S.isConstantEvaluated()) return; // Check the attributes attached to the method/function itself. @@ -17722,7 +17722,7 @@ ExprResult Sema::SemaBuiltinMatrixColumnMajorLoad(CallExpr *TheCall, } else ColumnsExpr = nullptr; - // If any any part of the result matrix type is still pending, just use + // If any part of the result matrix type is still pending, just use // Context.DependentTy, until all parts are resolved. if ((RowsExpr && RowsExpr->isTypeDependent()) || (ColumnsExpr && ColumnsExpr->isTypeDependent())) { |