From: Julian Brown Date: Fri, 13 May 2005 17:34:45 +0000 (+0000) Subject: 20041218-2.c: Add __attribute__((packed)). X-Git-Tag: misc/cutover-cvs2svn~3208 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=967bfd2c59732d550bec70d00f9b6f1b3416c1ae;p=thirdparty%2Fgcc.git 20041218-2.c: Add __attribute__((packed)). * gcc.c-torture/execute/20041218-2.c: Add __attribute__((packed)). * gcc.dg/intmax_t-1.c: Disable on *arm*-*-*elf*. From-SVN: r99672 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 44abb234dc4b..47c6771ea86b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-05-13 Julian Brown + + * gcc.c-torture/execute/20041218-2.c: Add __attribute__((packed)). + * gcc.dg/intmax_t-1.c: Disable on *arm*-*-*elf*. + 2005-05-13 Jan Hubicka * gcc.dg/builtins-43.c: Use gimple dump instead of generic. diff --git a/gcc/testsuite/gcc.c-torture/execute/20041218-2.c b/gcc/testsuite/gcc.c-torture/execute/20041218-2.c index c4b3627c9d1a..d44b54db9a04 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20041218-2.c +++ b/gcc/testsuite/gcc.c-torture/execute/20041218-2.c @@ -2,7 +2,7 @@ extern void abort (void); int test(int n) { - struct s { char b[n]; }; + struct s { char b[n]; } __attribute__((packed)); n++; return sizeof(struct s); } diff --git a/gcc/testsuite/gcc.dg/intmax_t-1.c b/gcc/testsuite/gcc.dg/intmax_t-1.c index 38e42f5b5c27..6c9820a2da9b 100644 --- a/gcc/testsuite/gcc.dg/intmax_t-1.c +++ b/gcc/testsuite/gcc.dg/intmax_t-1.c @@ -1,6 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-Wall" } */ -/* { dg-error "" "" { target *-*-solaris2.5.1 mmix-*-* mips*-*-elf* } 0 } */ +/* { dg-error "" "" { target *-*-solaris2.5.1 mmix-*-* mips*-*-elf* *arm*-*-*elf* } 0 } */ /* Compile with -Wall to get a warning if built-in and system intmax_t don't match. */