diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-10-20 14:38:46 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-10-20 14:38:46 +0000 |
commit | 198beae2cfaf8ea8bfd554ef8d3d3feeabc33ed7 (patch) | |
tree | a7f14543a6127d3f9fbbfb8dfc79313cc4a22e5a /binutils | |
parent | e7d715e57543306e019954928a714afea276d9ca (diff) | |
download | gdb-198beae2cfaf8ea8bfd554ef8d3d3feeabc33ed7.zip gdb-198beae2cfaf8ea8bfd554ef8d3d3feeabc33ed7.tar.gz gdb-198beae2cfaf8ea8bfd554ef8d3d3feeabc33ed7.tar.bz2 |
2003-10-19 Andrew Cagney <cagney@redhat.com>
* targets.c: Replace "struct sec" with "struct bfd_section"
* syms.c, sparclynx.c, section.c, opncls.c: Ditto.
* libcoff-in.h, libbfd-in.h, elfxx-target.h: Ditto.
* elf.c, coffgen.c, bfd.c, bfd-in.h, aoutf1.h: Ditto.
* aout-tic30.c, aout-target.h:
* bfd-in2.h, libcoff.h, libbfd.h: Regenerate.
Index: binutils/ChangeLog
2003-10-19 Andrew Cagney <cagney@redhat.com>
* coffgrok.h (coff_section): Replace 'struct sec" with "struct
bfd_section".
Index: gdb/ChangeLog
2003-10-19 Andrew Cagney <cagney@redhat.com>
* symtab.c: Replace "struct sec" with "struct bfd_section".
* objfiles.c, linespec.c, blockframe.c, block.c: Ditto.
Index: ld/ChangeLog
2003-10-19 Andrew Cagney <cagney@redhat.com>
* pe-dll.c: Replace "struct sec" with "struct bfd_section".
Index: sim/common/ChangeLog
2003-10-19 Andrew Cagney <cagney@redhat.com>
* sim-base.h: Replace "struct sec" with "struct bfd_section".
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/coffgrok.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 11a6dc5..6ee23c4 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2003-10-20 Andrew Cagney <cagney@redhat.com> + + * coffgrok.h (coff_section): Replace 'struct sec" with "struct + bfd_section". + 2003-10-07 Nathan Sidwell <nathan@codesourcery.com> * objdump.c (read_section_stabs): Just read one section, return diff --git a/binutils/coffgrok.h b/binutils/coffgrok.h index d071d24..c063f1d 100644 --- a/binutils/coffgrok.h +++ b/binutils/coffgrok.h @@ -53,7 +53,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ int nrelocs; int size; struct coff_reloc *relocs; - struct sec *bfd_section; + struct bfd_section *bfd_section; }; struct coff_ofile |