diff options
author | Stefanus Du Toit <stefanus.dutoit@rapidmind.com> | 2013-03-01 21:41:22 +0000 |
---|---|---|
committer | Stefanus Du Toit <stefanus.dutoit@rapidmind.com> | 2013-03-01 21:41:22 +0000 |
commit | fc09336a5965040736f9bc63a70416003972364e (patch) | |
tree | c4034e7eeddcb50d92e4a1a128386bb223d1540f /tools | |
parent | 9abf1b4577b75ffcc46afbdfb55de334f68f05c0 (diff) |
Fix typos: [Dd]iagnosic -> [Dd]iagnostic
These all appear in comments or (ironically) diagnostics output.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176383 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/c-index-test/c-index-test.c | 16 | ||||
-rw-r--r-- | tools/libclang/CXLoadedDiagnostic.cpp | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c index 178cbcae8e..72a8c74fc0 100644 --- a/tools/c-index-test/c-index-test.c +++ b/tools/c-index-test/c-index-test.c @@ -1231,7 +1231,7 @@ int perform_test_load_tu(const char *file, const char *filter, int result; Idx = clang_createIndex(/* excludeDeclsFromPCH */ !strcmp(filter, "local") ? 1 : 0, - /* displayDiagnosics=*/1); + /* displayDiagnostics=*/1); if (!CreateTranslationUnit(Idx, file, &TU)) { clang_disposeIndex(Idx); @@ -1256,7 +1256,7 @@ int perform_test_load_source(int argc, const char **argv, Idx = clang_createIndex(/* excludeDeclsFromPCH */ (!strcmp(filter, "local") || !strcmp(filter, "local-display"))? 1 : 0, - /* displayDiagnosics=*/0); + /* displayDiagnostics=*/0); if ((CommentSchemaFile = parse_comments_schema(argc, argv))) { argc--; @@ -1301,7 +1301,7 @@ int perform_test_reparse_source(int argc, const char **argv, int trials, Idx = clang_createIndex(/* excludeDeclsFromPCH */ !strcmp(filter, "local") ? 1 : 0, - /* displayDiagnosics=*/0); + /* displayDiagnostics=*/0); if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) { clang_disposeIndex(Idx); @@ -1380,7 +1380,7 @@ static int perform_file_scan(const char *ast_file, const char *source_file, unsigned start_line = 1, start_col = 1; if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1, - /* displayDiagnosics=*/1))) { + /* displayDiagnostics=*/1))) { fprintf(stderr, "Could not create Index\n"); return 1; } @@ -2702,7 +2702,7 @@ static int index_file(int argc, const char **argv, int full) { } if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1, - /* displayDiagnosics=*/1))) { + /* displayDiagnostics=*/1))) { fprintf(stderr, "Could not create Index\n"); return 1; } @@ -2746,7 +2746,7 @@ static int index_tu(int argc, const char **argv) { } if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1, - /* displayDiagnosics=*/1))) { + /* displayDiagnostics=*/1))) { fprintf(stderr, "Could not create Index\n"); return 1; } @@ -2781,7 +2781,7 @@ static int index_compile_db(int argc, const char **argv) { } if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1, - /* displayDiagnosics=*/1))) { + /* displayDiagnostics=*/1))) { fprintf(stderr, "Could not create Index\n"); return 1; } @@ -3289,7 +3289,7 @@ int write_pch_file(const char *filename, int argc, const char *argv[]) { int num_unsaved_files = 0; int result = 0; - Idx = clang_createIndex(/* excludeDeclsFromPCH */1, /* displayDiagnosics=*/1); + Idx = clang_createIndex(/* excludeDeclsFromPCH */1, /* displayDiagnostics=*/1); if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) { clang_disposeIndex(Idx); diff --git a/tools/libclang/CXLoadedDiagnostic.cpp b/tools/libclang/CXLoadedDiagnostic.cpp index 766ea3480a..b02fdd6ff1 100644 --- a/tools/libclang/CXLoadedDiagnostic.cpp +++ b/tools/libclang/CXLoadedDiagnostic.cpp @@ -423,7 +423,7 @@ LoadResult DiagLoader::readMetaBlock(llvm::BitstreamCursor &Stream) { return Failure; } if (Record[0] > MaxSupportedVersion) { - reportInvalidFile("diagnosics file is a newer version than the one " + reportInvalidFile("diagnostics file is a newer version than the one " "supported"); return Failure; } |