/* We don't treat zero-width bitfields as making a class
non-empty. */
;
- else if (field_poverlapping_p (field) && is_empty_class (type))
+ else if (field_poverlapping_p (field)
+ && is_empty_class (TREE_TYPE (field)))
/* Empty data members also don't make a class non-empty. */
CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 1;
else
/* This routine should only be used for empty classes. */
gcc_assert (is_empty_class (type));
- alignment = size_int (CLASSTYPE_ALIGN_UNIT (type));
+
+ if (decl && DECL_USER_ALIGN (decl))
+ alignment = size_int (DECL_ALIGN_UNIT (decl));
+ else
+ alignment = size_int (CLASSTYPE_ALIGN_UNIT (type));
/* This is an empty base class. We first try to put it at offset
zero. */
tree offset = size_zero_node;
- if (layout_conflict_p (type,
- offset,
- offsets,
- /*vbases_p=*/0))
+ if (TREE_CODE (rli->t) != UNION_TYPE
+ && layout_conflict_p (type,
+ offset,
+ offsets,
+ /*vbases_p=*/0))
{
/* That didn't work. Now, we move forward from the next
available spot in the class. */
}
}
- if (CLASSTYPE_USER_ALIGN (type))
+ if (decl && DECL_USER_ALIGN (decl))
+ {
+ rli->record_align = MAX (rli->record_align, DECL_ALIGN (decl));
+ if (warn_packed)
+ rli->unpacked_align = MAX (rli->unpacked_align, DECL_ALIGN (decl));
+ TYPE_USER_ALIGN (rli->t) = 1;
+ }
+ else if (CLASSTYPE_USER_ALIGN (type))
{
rli->record_align = MAX (rli->record_align, CLASSTYPE_ALIGN (type));
if (warn_packed)
--- /dev/null
+// PR c++/96105
+// { dg-do compile { target c++20 } }
+
+struct Empty {};
+
+struct A {
+ Empty emp [[no_unique_address]][3];
+};
+
+struct B : A {
+ float f;
+};
+
+struct C {
+ Empty emp [[no_unique_address]][3];
+ float f;
+};
+
+extern char szc[sizeof(C)];
+extern char szc[sizeof(float) * 2]; // GCC likes this
+extern char szb[sizeof(B)];
+extern char szb[sizeof(float) * 2]; // GCC does not like this
--- /dev/null
+// PR c++/96052
+// { dg-do compile { target c++20 } }
+
+struct Q {
+ struct {
+ } emp alignas(8) [[no_unique_address]];
+ char x;
+};
+struct QQ {
+ char x;
+ Q q;
+};
+
+struct Z {
+ char x alignas(8) [[no_unique_address]];
+};
+struct ZZ {
+ char x;
+ Z z;
+};
+
+extern char qx[sizeof(QQ)];
+extern char qx[16];
+extern char qz[sizeof(ZZ)];
+extern char qz[16];
--- /dev/null
+// PR c++/95976
+// { dg-do compile { target c++20 } }
+
+struct empty {};
+
+union no_attribute_t
+{
+ empty _0;
+ empty _1;
+};
+
+union with_attribute_t
+{
+ [[no_unique_address]] empty _0;
+ [[no_unique_address]] empty _1;
+};
+
+constexpr no_attribute_t no_attribute{};
+constexpr with_attribute_t with_attribute{};
+
+// This succeeds
+static_assert( &no_attribute._0 == &no_attribute._1 );
+
+// This fails
+static_assert( &with_attribute._0 == &with_attribute._1 );