From: Janis Johnson Date: Mon, 22 May 2006 22:16:55 +0000 (+0000) Subject: * gcc.c-torture/execute/20040709-2.c: Remove temporary hack for ppc64. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9162385be7d362ab5f1c7d72470af417384b2be7;p=gcc.git * gcc.c-torture/execute/20040709-2.c: Remove temporary hack for ppc64. From-SVN: r113995 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8b284e8313b..a715e2374aa 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2006-05-22 Janis Johnson + + * gcc.c-torture/execute/20040709-2.c: Remove temporary hack for ppc64. + 2006-05-22 Volker Reichelt PR c++/27716 diff --git a/gcc/testsuite/gcc.c-torture/execute/20040709-2.c b/gcc/testsuite/gcc.c-torture/execute/20040709-2.c index f06811c24b3..6ae1f2dadf4 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20040709-2.c +++ b/gcc/testsuite/gcc.c-torture/execute/20040709-2.c @@ -87,12 +87,7 @@ void test##S (void) \ abort (); \ } -#ifdef __powerpc64__ -/* Temporary hack for broken PPC64 unaligned handling PR rtl-optimization/13674 */ -# define pck -#else -# define pck __attribute__((packed)) -#endif +#define pck __attribute__((packed)) struct pck A { unsigned short i : 1, l : 1, j : 3, k : 11; }; T(A) struct pck B { unsigned short i : 4, j : 1, k : 11; unsigned int l; }; T(B) struct pck C { unsigned int l; unsigned short i : 4, j : 1, k : 11; }; T(C)