summaryrefslogtreecommitdiff
path: root/bfd/libcoff.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
commit12a9397b758637322e98bde8830fdec8fa5b7733 (patch)
treef9d7281dbb729e02fb893dfd728dc0ee63831b10 /bfd/libcoff.h
parentbb90d265cc907b03aef953f2cecdc3a6cfe30bcd (diff)
downloadgdb-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.h')
-rw-r--r--bfd/libcoff.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/bfd/libcoff.h b/bfd/libcoff.h
index fb3d5be73d9..5b3d703d119 100644
--- a/bfd/libcoff.h
+++ b/bfd/libcoff.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;