Commit d48b4987 by Eric Botcazou Committed by Eric Botcazou

pragma-align.c (sixteen): Use 8-byte alignment on LP64 targets.

	* gcc.dg/pragma-align.c (sixteen): Use 8-byte alignment
	on LP64 targets.

From-SVN: r90082
parent 797c289c
2004-11-04 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.dg/pragma-align.c (sixteen): Use 8-byte alignment
on LP64 targets.
2004-11-04 Joseph S. Myers <joseph@codesourcery.com>
* gcc.dg/asm-qual-1.c, gcc.dg/declspec-15.c, gcc.dg/declspec-16.c,
......
......@@ -9,7 +9,11 @@ struct {
long two;
} defaultalign;
#if defined(__LP64__)
#pragma pack(8)
#else
#pragma pack(4)
#endif
struct {
char one;
long two;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment