blob: dff029cadb18a75c505a19a531664842b5b0f970 [file] [log] [blame]
/* PR c/28712 */
/* { dg-lto-do link } */
struct A;
extern struct A *a;
struct A { } __attribute__((packed));
struct B __attribute__((aligned (sizeof (int))));
extern struct B *b;
struct B { int i; } __attribute__((packed));
int main() { return 0; }