]> granicus.if.org Git - clang/commitdiff
Add a workaround for decls that come from friend decls pointing to undeclared classes.
authorAnders Carlsson <andersca@mac.com>
Sat, 29 Aug 2009 20:47:47 +0000 (20:47 +0000)
committerAnders Carlsson <andersca@mac.com>
Sat, 29 Aug 2009 20:47:47 +0000 (20:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80438 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/DeclBase.cpp
lib/AST/DeclPrinter.cpp

index 3ced0eff4c52c8c5626518a6018112d443b344cb..3a010b0cdf5000fabefe2ff4242953c6ec3f6a12 100644 (file)
@@ -379,8 +379,18 @@ SourceLocation Decl::getBodyRBrace() const {
 
 #ifndef NDEBUG
 void Decl::CheckAccessDeclContext() const {
-  assert((Access != AS_none || isa<TranslationUnitDecl>(this) ||
-          !isa<CXXRecordDecl>(getDeclContext())) &&
+  // If the decl is the toplevel translation unit or if we're not in a
+  // record decl context, we don't need to check anything.
+  if (isa<TranslationUnitDecl>(this) ||
+      !isa<CXXRecordDecl>(getDeclContext()))
+    return;
+  
+  // FIXME: This check should not be necessary - If a friend decl refers to an
+  // undeclared decl, then that decl shouldn't be in any decl context.
+  if (getFriendObjectKind() == FOK_Undeclared)
+    return;
+  
+  assert(Access != AS_none && 
          "Access specifier is AS_none inside a record decl");
 }
 
index 191d356755f9489f063dbdc589fde5a2170ffe22..275f2db82b52f84969612a64a24139f98be0c11f 100644 (file)
@@ -202,7 +202,10 @@ void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
 
     if (PrintAccess) {
       AccessSpecifier AS = D->getAccess();
-      if (AS != CurAS) {
+
+      if (AS != CurAS && 
+          // FIXME: This check shouldn't be necessary.
+          D->getFriendObjectKind() == Decl::FOK_Undeclared) {
         Print(AS);
         Out << ":\n";
         CurAS = AS;