diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-28 18:53:19 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-28 18:53:19 +0000 |
commit | 580c6533e1ddcb30d8089a74c70e359786380ced (patch) | |
tree | c322128f47f1d25e08b89f2e85254fb3fb83a918 | |
parent | 13a6662f4012699b144c37d30d174264934d06d1 (diff) | |
download | gcc-580c6533e1ddcb30d8089a74c70e359786380ced.tar.gz |
* config/i386/cygwin.h (BIGGEST_FIELD_ALIGNMENT): Set to 64.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45234 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/cygwin.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2b9cbccc3ae..b15c0b49796 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-08-28 Danny Smith <dannysmith@users.sourceforge.net> + + * config/i386/cygwin.h (BIGGEST_FIELD_ALIGNMENT): Set to 64. + 2001-08-28 Stan Shebs <shebs@apple.com> * config/darwin.h (ASM_OUTPUT_LABELREF): Handle '*' names. diff --git a/gcc/config/i386/cygwin.h b/gcc/config/i386/cygwin.h index 71b84684545..d325167673c 100644 --- a/gcc/config/i386/cygwin.h +++ b/gcc/config/i386/cygwin.h @@ -446,6 +446,10 @@ extern int i386_pe_dllimport_name_p PARAMS ((const char *)); #undef BIGGEST_ALIGNMENT #define BIGGEST_ALIGNMENT 128 +/* Native complier aligns internal doubles in structures on dword boundaries. */ +#undef BIGGEST_FIELD_ALIGNMENT +#define BIGGEST_FIELD_ALIGNMENT 64 + /* A bitfield declared as `int' forces `int' alignment for the struct. */ #undef PCC_BITFIELDS_TYPE_MATTERS #define PCC_BITFIELDS_TYPE_MATTERS 1 |