[PATCH] D153038: [Clang] Fixes a diagnostic typo.
Mark de Wever via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 16 08:40:58 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG501405f1d5f0: [Clang] Fixes a diagnostic typo. (authored by Mordante).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153038/new/
https://reviews.llvm.org/D153038
Files:
clang/include/clang/Basic/DiagnosticSerializationKinds.td
clang/test/Modules/no-implicit-std-cxx-module.cppm
Index: clang/test/Modules/no-implicit-std-cxx-module.cppm
===================================================================
--- clang/test/Modules/no-implicit-std-cxx-module.cppm
+++ clang/test/Modules/no-implicit-std-cxx-module.cppm
@@ -7,7 +7,7 @@
// RUN: -o %t/a.pcm
// RUN: %clang_cc1 -std=c++20 %t/user.cpp -fmodule-file=a=%t/a.pcm -verify -fsyntax-only
// RUN: %clang_cc1 -std=c++20 %t/user.cpp -fmodule-file=a=%t/a.pcm -verify -fsyntax-only \
-// RUN: -Wno-read-modules-implicitly -DNO_DIAG
+// RUN: -Wno-read-modules-implicitly -DNO_DIAG
// RUN: %clang_cc1 -std=c++20 %t/user.cpp -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm \
// RUN: -DNO_DIAG -verify -fsyntax-only
//
@@ -35,7 +35,7 @@
return b() + 43;
}
-// CHECK: it is deprecated to read module 'b' implcitly;
+// CHECK: it is deprecated to read module 'b' implicitly;
// CHECK-CORRECT-NOT: warning
// CHECK-CORRECT-NOT: error
@@ -47,9 +47,9 @@
#ifdef NO_DIAG
// expected-no-diagnostics
#else
- // expected-warning at +2 {{it is deprecated to read module 'b' implcitly;}}
+ // expected-warning at +2 {{it is deprecated to read module 'b' implicitly;}}
#endif
import a;
int use() {
return a();
-}
\ No newline at end of file
+}
Index: clang/include/clang/Basic/DiagnosticSerializationKinds.td
===================================================================
--- clang/include/clang/Basic/DiagnosticSerializationKinds.td
+++ clang/include/clang/Basic/DiagnosticSerializationKinds.td
@@ -135,7 +135,7 @@
InGroup<DiagGroup<"eager-load-cxx-named-modules">>;
def warn_reading_std_cxx_module_by_implicit_paths : Warning<
- "it is deprecated to read module '%0' implcitly; it is going to be removed in clang18; "
+ "it is deprecated to read module '%0' implicitly; it is going to be removed in clang 18; "
"consider to specify the dependencies explicitly">,
InGroup<DiagGroup<"read-modules-implicitly">>;
} // let CategoryName
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153038.532172.patch
Type: text/x-patch
Size: 1947 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230616/fa8c7dbb/attachment.bin>
More information about the cfe-commits
mailing list