mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
From: Albert Chin-A-Young <china@thewrittenword.com>
* bfd/elf-bfd.h (struct eh_cie_fde): Convert unsigned char bitfields to unsigned int.
This commit is contained in:
parent
1658da4930
commit
822392cef5
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user