diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2022-09-28 13:25:58 -0400 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2022-09-28 13:27:52 -0400 |
commit | 60727d856927383daf304fcf8f19fcc8ade828ad (patch) | |
tree | e3d1edab73e44dbc346dd82a43d381c485f72f30 /clang/lib/Sema/DeclSpec.cpp | |
parent | 153eeb4a5e68c6054a220667646b14f3785a942e (diff) | |
download | llvm-60727d856927383daf304fcf8f19fcc8ade828ad.zip llvm-60727d856927383daf304fcf8f19fcc8ade828ad.tar.gz llvm-60727d856927383daf304fcf8f19fcc8ade828ad.tar.bz2 |
[C2x] implement typeof and typeof_unqual
This implements WG14 N2927 and WG14 N2930, which together define the
feature for typeof and typeof_unqual, which get the type of their
argument as either fully qualified or fully unqualified. The argument
to either operator is either a type name or an expression. If given a
type name, the type information is pulled directly from the given name.
If given an expression, the type information is pulled from the
expression. Recursive use of these operators is allowed and has the
expected behavior (the innermost operator is resolved to a type, and
that's used to resolve the next layer of typeof specifier, until a
fully resolved type is determined.
Note, we already supported typeof in GNU mode as a non-conforming
extension and we are *not* exposing typeof_unqual as a non-conforming
extension in that mode, nor are we exposing typeof or typeof_unqual as
a nonconforming extension in other language modes. The GNU variant of
typeof supports a form where the parentheses are elided from the
operator when given an expression (e.g., typeof 0 i = 12;). When in C2x
mode, we do not support this extension.
Differential Revision: https://reviews.llvm.org/D134286
Diffstat (limited to 'clang/lib/Sema/DeclSpec.cpp')
-rw-r--r-- | clang/lib/Sema/DeclSpec.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Sema/DeclSpec.cpp b/clang/lib/Sema/DeclSpec.cpp index 0c4b79d..dc6a1ef 100644 --- a/clang/lib/Sema/DeclSpec.cpp +++ b/clang/lib/Sema/DeclSpec.cpp @@ -384,6 +384,7 @@ bool Declarator::isDeclarationOfFunction() const { return false; case TST_decltype: + case TST_typeof_unqualExpr: case TST_typeofExpr: if (Expr *E = DS.getRepAsExpr()) return E->getType()->isFunctionType(); @@ -392,6 +393,7 @@ bool Declarator::isDeclarationOfFunction() const { #define TRANSFORM_TYPE_TRAIT_DEF(_, Trait) case TST_##Trait: #include "clang/Basic/TransformTypeTraits.def" case TST_typename: + case TST_typeof_unqualType: case TST_typeofType: { QualType QT = DS.getRepAsType().get(); if (QT.isNull()) @@ -573,6 +575,8 @@ const char *DeclSpec::getSpecifierName(DeclSpec::TST T, case DeclSpec::TST_typename: return "type-name"; case DeclSpec::TST_typeofType: case DeclSpec::TST_typeofExpr: return "typeof"; + case DeclSpec::TST_typeof_unqualType: + case DeclSpec::TST_typeof_unqualExpr: return "typeof_unqual"; case DeclSpec::TST_auto: return "auto"; case DeclSpec::TST_auto_type: return "__auto_type"; case DeclSpec::TST_decltype: return "(decltype)"; |