diff options
author | Alan Modra <amodra@gmail.com> | 2014-07-01 20:43:14 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-07-01 20:43:14 +0930 |
commit | b6a1c03a9547590a35fccda9ae358fb1cfd8befa (patch) | |
tree | 85640db2702d85999f653672fd20308603963be8 /binutils | |
parent | 7341d5e22f1061016411734ba162d362ac5928db (diff) | |
download | gdb-b6a1c03a9547590a35fccda9ae358fb1cfd8befa.zip gdb-b6a1c03a9547590a35fccda9ae358fb1cfd8befa.tar.gz gdb-b6a1c03a9547590a35fccda9ae358fb1cfd8befa.tar.bz2 |
Reorganise struct bfd
for better packing. Removes a field and a flag that are never set.
bfd/
* bfd.c (struct bfd): Reorganise for better packing. Delete
"ifd" field. Make "format", "direction" and "flags" bitfields.
(HAS_LOAD_PAGE): Delete, renumber following flags.
* bfd-in2.h: Regenerate.
* coff-tic4x.c: Remove HAS_LOAD_PAGE from extra flags in target vecs.
binutils/
* objdump.c (dump_bfd_header): Don't print HAS_LOAD_PAGE.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/objdump.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 081c060..e81c97a 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2014-07-01 Alan Modra <amodra@gmail.com> + + * objdump.c (dump_bfd_header): Don't print HAS_LOAD_PAGE. + 2014-06-26 Erik Akermann <kurterikackermann@gmail.com> * strings.c: Add -w/--include-all-whitespace option to include any diff --git a/binutils/objdump.c b/binutils/objdump.c index 14f4122..5086a15 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -2629,7 +2629,6 @@ dump_bfd_header (bfd *abfd) PF (WP_TEXT, "WP_TEXT"); PF (D_PAGED, "D_PAGED"); PF (BFD_IS_RELAXABLE, "BFD_IS_RELAXABLE"); - PF (HAS_LOAD_PAGE, "HAS_LOAD_PAGE"); printf (_("\nstart address 0x")); bfd_printf_vma (abfd, abfd->start_address); printf ("\n"); |