summaryrefslogtreecommitdiff
path: root/bfd/libcoff-in.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1999-08-18 06:00:13 +0000
committerIan Lance Taylor <ian@airs.com>1999-08-18 06:00:13 +0000
commit4394515722919c1df3edf250428d8a9989e2c49c (patch)
tree70047240d91b58bafa80b8836c0d9af248c69a99 /bfd/libcoff-in.h
parent4a8cbe0475766f442d45290e90675074ae783dad (diff)
downloadbinutils-redhat-4394515722919c1df3edf250428d8a9989e2c49c.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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/bfd/libcoff-in.h b/bfd/libcoff-in.h
index a0362ca9f1..790eeb0342 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;