diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-08-18 06:00:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-08-18 06:00:13 +0000 |
commit | 12a9397b758637322e98bde8830fdec8fa5b7733 (patch) | |
tree | f9d7281dbb729e02fb893dfd728dc0ee63831b10 /bfd/libcoff-in.h | |
parent | bb90d265cc907b03aef953f2cecdc3a6cfe30bcd (diff) | |
download | gdb-12a9397b758637322e98bde8830fdec8fa5b7733.tar.gz |
1999-08-18 Donn Terry <donn@interix.com>
* coff-i386.c (coff_i386_reloc): Handle R_IMAGEBASE.
(RTYPE2HOWTO): Return NULL if reloc type is out of range.
(coff_i386_rtype_to_howto): Likewise.
* coffcode.h (coff_slurp_symbol_table): Change a -2 to N_DEBUG.
Completely ignore symbols which are all zero.
(dummy_reloc16_estimate): Add return 0.
* cofflink.c (_bfd_coff_link_input_bfd): Rename inner scope
variable copy to name_copy to avoid shadowing outer scope
variable.
* libcoff-in.h (coff_data_type): Change raw_syment_count field
from unsigned int to unsigned long. Add timestamp field.
* libcoff.h: Rebuild.
Also comment changes.
Diffstat (limited to 'bfd/libcoff-in.h')
-rw-r--r-- | bfd/libcoff-in.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bfd/libcoff-in.h b/bfd/libcoff-in.h index a0362ca9f10..790eeb0342b 100644 --- a/bfd/libcoff-in.h +++ b/bfd/libcoff-in.h @@ -56,7 +56,7 @@ typedef struct coff_tdata file_ptr sym_filepos; struct coff_ptr_struct *raw_syments; - unsigned int raw_syment_count; + unsigned long raw_syment_count; /* These are only valid once writing has begun */ long int relocbase; @@ -97,6 +97,9 @@ typedef struct coff_tdata /* Used by coff_find_nearest_line. */ PTR line_info; + /* The timestamp from the COFF file header. */ + long timestamp; + /* Copy of some of the f_flags bits in the COFF filehdr structure, used by ARM code. */ flagword flags; |