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/SemaOpenMP.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/SemaOpenMP.cpp')
-rw-r--r-- | clang/lib/Sema/SemaOpenMP.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaOpenMP.cpp b/clang/lib/Sema/SemaOpenMP.cpp index 4f5d393..2772ac6 100644 --- a/clang/lib/Sema/SemaOpenMP.cpp +++ b/clang/lib/Sema/SemaOpenMP.cpp @@ -20968,8 +20968,8 @@ public: } // Pointer arithmetic is the only thing we expect to happen here so after we - // make sure the binary operator is a pointer type, the we only thing need - // to to is to visit the subtree that has the same type as root (so that we + // make sure the binary operator is a pointer type, the only thing we need + // to do is to visit the subtree that has the same type as root (so that we // know the other subtree is just an offset) Expr *LE = BO->getLHS()->IgnoreParenImpCasts(); Expr *RE = BO->getRHS()->IgnoreParenImpCasts(); @@ -21739,7 +21739,7 @@ static void checkMappableExpressionList( /*WhereFoundClauseKind=*/OMPC_map); // Save the components and declaration to create the clause. For purposes of - // the clause creation, any component list that has has base 'this' uses + // the clause creation, any component list that has base 'this' uses // null as base declaration. MVLI.VarComponents.resize(MVLI.VarComponents.size() + 1); MVLI.VarComponents.back().append(CurComponents.begin(), |