From 244b1c60bab6c63d71fc88969398ad1c8422c826 Mon Sep 17 00:00:00 2001 From: jason Date: Mon, 20 Oct 2003 22:01:58 +0000 Subject: PR c/11446 * stor-layout.c (layout_decl): Fix alignment handling. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72725 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/testsuite/gcc.dg/pack-test-5.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 gcc/testsuite/gcc.dg/pack-test-5.c (limited to 'gcc/testsuite/gcc.dg/pack-test-5.c') diff --git a/gcc/testsuite/gcc.dg/pack-test-5.c b/gcc/testsuite/gcc.dg/pack-test-5.c new file mode 100644 index 00000000000..e95030c089e --- /dev/null +++ b/gcc/testsuite/gcc.dg/pack-test-5.c @@ -0,0 +1,19 @@ +/* PR c/11446: packed on a struct takes precedence over aligned on the type + of a field. */ +/* { dg-do run } */ + +struct A { + double d; +} __attribute__ ((aligned)); + +struct B { + char c; + struct A a; +} __attribute__ ((packed)); + +int main () +{ + if (sizeof (struct B) != sizeof (char) + sizeof (struct A)) + abort (); + return 0; +} -- cgit v1.2.1