diff options
author | Jakub Jelinek <jakub@redhat.com> | 2023-08-11 09:34:15 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2023-08-11 09:34:15 +0200 |
commit | 607d9d50ee44163cee621cd991600acaf78c2fee (patch) | |
tree | 32195274031ddc81bb6f9f37dde88b7ac5af35c0 /gcc/c | |
parent | f956c232649e4bb7482786cd54e5d5b4085cd00a (diff) | |
download | gcc-607d9d50ee44163cee621cd991600acaf78c2fee.zip gcc-607d9d50ee44163cee621cd991600acaf78c2fee.tar.gz gcc-607d9d50ee44163cee621cd991600acaf78c2fee.tar.bz2 |
c: Add __typeof_unqual__ and __typeof_unqual support
As I mentioned in my stdckdint.h mail, I think having __ prefixed
keywords for the typeof_unqual keyword which can be used in earlier
language modes can be useful, not all code can be switched to C23
right away.
The following patch implements that. It keeps the non-C23 behavior
for it for the _Noreturn functions to stay compatible with how
__typeof__ behaves.
I think we don't need it for C++, in C++ we have standard
traits to remove qualifiers etc.
2023-08-11 Jakub Jelinek <jakub@redhat.com>
gcc/
* doc/extend.texi (Typeof): Document typeof_unqual
and __typeof_unqual__.
gcc/c-family/
* c-common.cc (c_common_reswords): Add __typeof_unqual
and __typeof_unqual__ spellings of typeof_unqual.
gcc/c/
* c-parser.cc (c_parser_typeof_specifier): Handle
__typeof_unqual and __typeof_unqual__ as !is_std.
gcc/testsuite/
* gcc.dg/c11-typeof-2.c: New test.
* gcc.dg/c11-typeof-3.c: New test.
* gcc.dg/gnu11-typeof-3.c: New test.
* gcc.dg/gnu11-typeof-4.c: New test.
Diffstat (limited to 'gcc/c')
-rw-r--r-- | gcc/c/c-parser.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c/c-parser.cc b/gcc/c/c-parser.cc index 57a01dc..cabb18d 100644 --- a/gcc/c/c-parser.cc +++ b/gcc/c/c-parser.cc @@ -4164,7 +4164,8 @@ c_parser_typeof_specifier (c_parser *parser) { gcc_assert (c_parser_next_token_is_keyword (parser, RID_TYPEOF_UNQUAL)); is_unqual = true; - is_std = true; + tree spelling = c_parser_peek_token (parser)->value; + is_std = strcmp (IDENTIFIER_POINTER (spelling), "typeof_unqual") == 0; } c_parser_consume_token (parser); c_inhibit_evaluation_warnings++; |