[clang][Sema] Don't try to initialize implicit variable of invalid anonymous union...
authorTa-Wei Tu <tu.da.wei@gmail.com>
Wed, 31 Mar 2021 01:05:24 +0000 (09:05 +0800)
committerTa-Wei Tu <tu.da.wei@gmail.com>
Wed, 31 Mar 2021 01:05:45 +0000 (09:05 +0800)
This fixes https://bugs.llvm.org/show_bug.cgi?id=49534, where the call to the constructor
of the anonymous union is checked and triggers assertion failure when trying to retrieve
the alignment of the `this` argument (which is a union with virtual function).

The extra check for alignment was introduced in D97187.

Reviewed By: tmatheson

Differential Revision: https://reviews.llvm.org/D98548

clang/lib/Sema/SemaDecl.cpp
clang/test/SemaCXX/PR49534.cpp [new file with mode: 0644]

index 76e3ee9..b117d73 100644 (file)
@@ -5211,7 +5211,8 @@ Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
     // trivial in almost all cases, except if a union member has an in-class
     // initializer:
     //   union { int n = 0; };
-    ActOnUninitializedDecl(Anon);
+    if (!Invalid)
+      ActOnUninitializedDecl(Anon);
   }
   Anon->setImplicit();
 
diff --git a/clang/test/SemaCXX/PR49534.cpp b/clang/test/SemaCXX/PR49534.cpp
new file mode 100644 (file)
index 0000000..8a17402
--- /dev/null
@@ -0,0 +1,6 @@
+// RUN: %clang_cc1 -x c++ -fsyntax-only %s -verify
+
+static union {     // expected-warning {{declaration does not declare anything}}
+  virtual int a(); // expected-error {{unions cannot have virtual functions}} \
+                   // expected-error {{functions cannot be declared in an anonymous union}}
+};