diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-12-15 16:32:14 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-12-15 16:32:14 +0000 |
commit | 7df7b6bb800e1987951285ea192e4f347e1b603a (patch) | |
tree | 6043f6cfb34b0d020970b2ca82ced64f3f5b6861 /lib/AST/ASTContext.cpp | |
parent | f9d1e4bc60690386e0b2c658d707b75a77717a9c (diff) |
Create new EnumDecl nodes for redeclarations of enums, linking them
together in the same way that we link RecordDecl/CXXRecordDecl nodes.
Unify ActOnTag and ActOnTagStruct.
Fixes PR clang/2753.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/ASTContext.cpp')
-rw-r--r-- | lib/AST/ASTContext.cpp | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 1647e757e3..9f8db595b7 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -990,7 +990,8 @@ QualType ASTContext::getTypeDeclType(TypeDecl *Decl, TypeDecl* PrevDecl) { : new RecordType(Record); } else if (EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) - Decl->TypeForDecl = new EnumType(Enum); + Decl->TypeForDecl = PrevDecl ? PrevDecl->TypeForDecl + : new EnumType(Enum); else assert(false && "TypeDecl without a type?"); @@ -998,16 +999,9 @@ QualType ASTContext::getTypeDeclType(TypeDecl *Decl, TypeDecl* PrevDecl) { return QualType(Decl->TypeForDecl, 0); } -/// setTagDefinition - Used by RecordDecl::completeDefinition and -/// EnumDecl::completeDefinition to inform about which -/// RecordDecl/EnumDecl serves as the definition of a particular -/// struct/union/class/enum. void ASTContext::setTagDefinition(TagDecl* D) { assert (D->isDefinition()); - if (!D->TypeForDecl) - getTypeDeclType(D); - else - cast<TagType>(D->TypeForDecl)->decl = D; + cast<TagType>(D->TypeForDecl)->decl = D; } /// getTypedefType - Return the unique reference to the type for the |