summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorHiroshi Inoue <inouehrs@jp.ibm.com>2018-01-23 05:50:06 +0000
committerHiroshi Inoue <inouehrs@jp.ibm.com>2018-01-23 05:50:06 +0000
commitcde18b4b197647a7c586cb0b7b65e11b65a3fef0 (patch)
tree2fa30145ef41079b31c46764f270a3ac226687e6 /clang
parent4cf7b885e6423e23b3363bf7bc045167d7a2d857 (diff)
downloadbcm5719-llvm-cde18b4b197647a7c586cb0b7b65e11b65a3fef0.tar.gz
bcm5719-llvm-cde18b4b197647a7c586cb0b7b65e11b65a3fef0.zip
[NFC] fix trivial typos in comments
"the the" -> "the" llvm-svn: 323177
Diffstat (limited to 'clang')
-rw-r--r--clang/include/clang/Basic/AddressSpaces.h2
-rw-r--r--clang/include/clang/CodeGen/ConstantInitBuilder.h2
-rw-r--r--clang/include/clang/StaticAnalyzer/Checkers/Checkers.td2
-rw-r--r--clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/clang/include/clang/Basic/AddressSpaces.h b/clang/include/clang/Basic/AddressSpaces.h
index 6b0090813e9..67019f69253 100644
--- a/clang/include/clang/Basic/AddressSpaces.h
+++ b/clang/include/clang/Basic/AddressSpaces.h
@@ -24,7 +24,7 @@ namespace clang {
/// of QualType.
///
enum class LangAS : unsigned {
- // The default value 0 is the value used in QualType for the the situation
+ // The default value 0 is the value used in QualType for the situation
// where there is no address space qualifier.
Default = 0,
diff --git a/clang/include/clang/CodeGen/ConstantInitBuilder.h b/clang/include/clang/CodeGen/ConstantInitBuilder.h
index 113d86d82c1..d1388f0c51b 100644
--- a/clang/include/clang/CodeGen/ConstantInitBuilder.h
+++ b/clang/include/clang/CodeGen/ConstantInitBuilder.h
@@ -295,7 +295,7 @@ public:
slot = value;
}
- /// Produce an address which will eventually point to the the next
+ /// Produce an address which will eventually point to the next
/// position to be filled. This is computed with an indexed
/// getelementptr rather than by computing offsets.
///
diff --git a/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td b/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
index e510e84e938..77820aeea30 100644
--- a/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
+++ b/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
@@ -86,7 +86,7 @@ def LLVM : Package<"llvm">;
// The APIModeling package is for checkers that model APIs and don't perform
// any diagnostics. These checkers are always turned on; this package is
-// intended for API modeling that is not controlled by the the target triple.
+// intended for API modeling that is not controlled by the target triple.
def APIModeling : Package<"apiModeling">, Hidden;
def GoogleAPIModeling : Package<"google">, InPackage<APIModeling>;
diff --git a/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h b/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h
index 734b624d777..d32ed642b08 100644
--- a/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h
+++ b/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h
@@ -82,7 +82,7 @@ private:
Expected<AtomicChanges>
createSourceReplacements(RefactoringRuleContext &Context) override;
- // A NamedDecl which indentifies the the symbol being renamed.
+ // A NamedDecl which indentifies the symbol being renamed.
const NamedDecl *ND;
// The new qualified name to change the symbol to.
std::string NewQualifiedName;
OpenPOWER on IntegriCloud