* gcc.c-torture/execute/20040709-2.c: Remove temporary hack for ppc64.

From-SVN: r113995
This commit is contained in:
Janis Johnson 2006-05-22 22:16:55 +00:00 committed by Janis Johnson
parent 3f2c089fe6
commit 9162385be7
2 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2006-05-22 Janis Johnson <janis187@us.ibm.com>
* gcc.c-torture/execute/20040709-2.c: Remove temporary hack for ppc64.
2006-05-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/27716

View File

@ -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)