diff options
| author | Douglas Gregor <dgregor@apple.com> | 2010-05-03 15:18:25 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2010-05-03 15:18:25 +0000 |
| commit | 456ad1a81743cf00c71a68a4aa570f18b29d4c29 (patch) | |
| tree | 29ce983eb52d694c70902216544357c6b196b4a2 /clang/lib/Sema | |
| parent | d040e6b25a98b33caba830159c567ba413a9ed2b (diff) | |
| download | bcm5719-llvm-456ad1a81743cf00c71a68a4aa570f18b29d4c29.tar.gz bcm5719-llvm-456ad1a81743cf00c71a68a4aa570f18b29d4c29.zip | |
When a class contains a non-empty anonymous union or struct, mark is
as non-empty. Fixes PR7021.
llvm-svn: 102913
Diffstat (limited to 'clang/lib/Sema')
| -rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index 3e4c923285c..eb91ec61472 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -1773,8 +1773,11 @@ Sema::DeclPtrTy Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS, TInfo, /*BitWidth=*/0, /*Mutable=*/false); Anon->setAccess(AS_public); - if (getLangOptions().CPlusPlus) + if (getLangOptions().CPlusPlus) { FieldCollector->Add(cast<FieldDecl>(Anon)); + if (!cast<CXXRecordDecl>(Record)->isEmpty()) + cast<CXXRecordDecl>(OwningClass)->setEmpty(false); + } } else { DeclSpec::SCS SCSpec = DS.getStorageClassSpec(); assert(SCSpec != DeclSpec::SCS_typedef && @@ -1802,7 +1805,7 @@ Sema::DeclPtrTy Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS, // context. We'll be referencing this object when we refer to one of // its members. Owner->addDecl(Anon); - + // Inject the members of the anonymous struct/union into the owning // context and into the identifier resolver chain for name lookup // purposes. |

