blob: 2d5ad04b02c65c739c8e0d127b3b2d91f6dadc57 [file] [log] [blame]
// PR c++/20763
// { dg-do compile { target c++11 } }
typedef void *voidp;
struct S
{
char a;
voidp b [[gnu::aligned (16)]];
};
struct T
{
char a;
void * b [[gnu::aligned (16)]];
};
static_assert (sizeof (S) == sizeof (T),
"struct S and T should have the same size");
static_assert (sizeof (S) == 32, "sizeof (S) == 8 + 16 + 8");