diff options
author | Michael Han <fragmentshaders@gmail.com> | 2013-02-22 17:15:32 +0000 |
---|---|---|
committer | Michael Han <fragmentshaders@gmail.com> | 2013-02-22 17:15:32 +0000 |
commit | 84324357b8e3870166bd29adf4c4eb83686644d4 (patch) | |
tree | 0d8c2a31b6bc5fe50f6d0d95f7d5df284176565f /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | adc1b070020c8badc664302b6bf2ac39bdf1b494 (diff) | |
download | llvm-84324357b8e3870166bd29adf4c4eb83686644d4.zip llvm-84324357b8e3870166bd29adf4c4eb83686644d4.tar.gz llvm-84324357b8e3870166bd29adf4c4eb83686644d4.tar.bz2 |
[Sema] Semantic analysis for empty-declaration and attribute-declaration.
Introduce a new AST Decl node "EmptyDecl" to model empty-declaration. Have attributes from attribute-declaration appertain
to the EmptyDecl node by creating the AST representations of these attributes and attach them to the EmptyDecl node so these
attributes can be sema checked just as attributes attached to "normal" declarations.
llvm-svn: 175900
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 60ec323..6442f04 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -2742,6 +2742,7 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) { case Decl::TypeAliasTemplate: case Decl::NamespaceAlias: case Decl::Block: + case Decl::Empty: break; case Decl::CXXConstructor: // Skip function templates |