aboutsummaryrefslogtreecommitdiff
path: root/libcpp/directives.cc
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2022-08-24 09:55:57 +0200
committerJakub Jelinek <jakub@redhat.com>2022-08-24 09:55:57 +0200
commit365202625d2f2d6694dba889ca67498fefb59c68 (patch)
tree0eb106ecafdb17bdb057a8efc837647c5598fe8b /libcpp/directives.cc
parent42301c02e458cdce646ffaf7ea1df502ab2e8ddc (diff)
downloadgcc-365202625d2f2d6694dba889ca67498fefb59c68.zip
gcc-365202625d2f2d6694dba889ca67498fefb59c68.tar.gz
gcc-365202625d2f2d6694dba889ca67498fefb59c68.tar.bz2
preprocessor: Implement C++23 P2437R1 - Support for #warning [PR106646]
On Thu, Aug 18, 2022 at 11:02:44PM +0000, Joseph Myers wrote: > ISO C2x standardizes the existing #warning extension. Arrange > accordingly for it not to be diagnosed with -std=c2x -pedantic, but to > be diagnosed with -Wc11-c2x-compat. And here is the corresponding C++ version. Don't pedwarn about this for C++23/GNU++23 and tweak the diagnostics for C++ otherwise, + testsuite coverage. The diagnostic wording is similar e.g. to the #elifdef diagnostics. 2022-08-24 Jakub Jelinek <jakub@redhat.com> PR c++/106646 * init.cc: Implement C++23 P2437R1 - Support for #warning. (lang_defaults): Set warning_directive for GNUCXX23 and CXX23. * directives.cc (directive_diagnostics): Use different wording of #warning pedwarn for C++. * g++.dg/cpp/warning-1.C: New test. * g++.dg/cpp/warning-2.C: New test. * g++.dg/cpp/warning-3.C: New test.
Diffstat (limited to 'libcpp/directives.cc')
-rw-r--r--libcpp/directives.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/libcpp/directives.cc b/libcpp/directives.cc
index 802bd8c..918752f 100644
--- a/libcpp/directives.cc
+++ b/libcpp/directives.cc
@@ -388,8 +388,14 @@ directive_diagnostics (cpp_reader *pfile, const directive *dir, int indented)
else if (dir == &dtable[T_WARNING])
{
if (CPP_PEDANTIC (pfile) && !CPP_OPTION (pfile, warning_directive))
- cpp_error (pfile, CPP_DL_PEDWARN,
- "#%s before C2X is a GCC extension", dir->name);
+ {
+ if (CPP_OPTION (pfile, cplusplus))
+ cpp_error (pfile, CPP_DL_PEDWARN,
+ "#%s before C++23 is a GCC extension", dir->name);
+ else
+ cpp_error (pfile, CPP_DL_PEDWARN,
+ "#%s before C2X is a GCC extension", dir->name);
+ }
else if (CPP_OPTION (pfile, cpp_warn_c11_c2x_compat) > 0)
cpp_warning (pfile, CPP_W_C11_C2X_COMPAT,
"#%s before C2X is a GCC extension", dir->name);