diff options
author | Phil Blundell <pb@futuretv.com> | 2000-05-29 18:20:07 +0000 |
---|---|---|
committer | Phil Blundell <pb@futuretv.com> | 2000-05-29 18:20:07 +0000 |
commit | 7f7f1980d7b5bf50e1a28fc805e1074bb13199ce (patch) | |
tree | 940426722eeef36e0c628b3ed509f8b7f6814b6c | |
parent | a1b5ede0ba02a9e86946a251ecbb22fbfc1573c3 (diff) | |
download | gdb-7f7f1980d7b5bf50e1a28fc805e1074bb13199ce.tar.gz |
2000-05-29 Philip Blundell <philb@gnu.org>
* ppcboot.c: Add packed attribute if compiling with GCC.
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/ppcboot.c | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 420d1f92ad3..0884d78e521 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2000-05-29 Philip Blundell <philb@gnu.org> + + * ppcboot.c: Add packed attribute if compiling with GCC. + 2000-05-29 Anatoly Vorobey <mellon@pobox.com> * elf.c (_bfd_elf_link_hash_table_init): Initialize dynlocal. diff --git a/bfd/ppcboot.c b/bfd/ppcboot.c index d9db8268d47..9441848b3d3 100644 --- a/bfd/ppcboot.c +++ b/bfd/ppcboot.c @@ -64,7 +64,11 @@ typedef struct ppcboot_hdr { bfd_byte os_id; /* OS_ID */ char partition_name[32]; /* partition name */ bfd_byte reserved1[470]; /* reserved */ -} ppcboot_hdr_t; +} +#ifdef __GNUC__ + __attribute__ ((packed)) +#endif +ppcboot_hdr_t; /* Signature bytes for last 2 bytes of the 512 byte record */ #define SIGNATURE0 0x55 |