diff options
author | Daniel Jacobowitz <drow@false.org> | 2004-06-07 15:29:53 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2004-06-07 15:29:53 +0000 |
commit | 822392cef5840fa439b88ca930573f356ef0cdab (patch) | |
tree | ae6148a1f8a8f66da159e3045b5618f414e9bff3 | |
parent | 1658da493060d8f4b1a814166e412c13644e133e (diff) | |
download | gdb-822392cef5840fa439b88ca930573f356ef0cdab.zip gdb-822392cef5840fa439b88ca930573f356ef0cdab.tar.gz gdb-822392cef5840fa439b88ca930573f356ef0cdab.tar.bz2 |
From: Albert Chin-A-Young <china@thewrittenword.com>
* bfd/elf-bfd.h (struct eh_cie_fde): Convert unsigned char bitfields
to unsigned int.
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf-bfd.h | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index afca5c3..6453345 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2004-06-07 Daniel Jacobowitz <dan@debian.org> + + From: Albert Chin-A-Young <china@thewrittenword.com> + * bfd/elf-bfd.h (struct eh_cie_fde): Convert unsigned char bitfields + to unsigned int. + 2004-05-29 H.J. Lu <hongjiu.lu@intel.com> * elfxx-ia64.c (elfNN_ia64_relax_section): Undo the last diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 82da5bb..220e401 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -278,11 +278,11 @@ struct eh_cie_fde unsigned char fde_encoding; unsigned char lsda_encoding; unsigned char lsda_offset; - unsigned char cie : 1; - unsigned char removed : 1; - unsigned char make_relative : 1; - unsigned char make_lsda_relative : 1; - unsigned char per_encoding_relative : 1; + unsigned int cie : 1; + unsigned int removed : 1; + unsigned int make_relative : 1; + unsigned int make_lsda_relative : 1; + unsigned int per_encoding_relative : 1; }; struct eh_frame_sec_info |