diff options
author | Saar Raz <saar@raz.email> | 2019-07-10 21:25:49 +0000 |
---|---|---|
committer | Saar Raz <saar@raz.email> | 2019-07-10 21:25:49 +0000 |
commit | d7aae33a9513d29400157867cdc1f11c2e4a0c40 (patch) | |
tree | c2c44b5657f7e2efa19a29f4130868d05314eef8 /clang/lib/CodeGen/CGDecl.cpp | |
parent | 0171866672346f2a6e956ea97d5cc913f85b39db (diff) | |
download | bcm5719-llvm-d7aae33a9513d29400157867cdc1f11c2e4a0c40.tar.gz bcm5719-llvm-d7aae33a9513d29400157867cdc1f11c2e4a0c40.zip |
[Concepts] Concept definitions (D40381)
First in a series of patches to land C++2a Concepts support.
This patch adds AST and parsing support for concept-declarations.
llvm-svn: 365699
Diffstat (limited to 'clang/lib/CodeGen/CGDecl.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDecl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp index 758737e86c2..e8c6a479a9e 100644 --- a/clang/lib/CodeGen/CGDecl.cpp +++ b/clang/lib/CodeGen/CGDecl.cpp @@ -108,6 +108,7 @@ void CodeGenFunction::EmitDecl(const Decl &D) { case Decl::OMPCapturedExpr: case Decl::OMPRequires: case Decl::Empty: + case Decl::Concept: // None of these decls require codegen support. return; |