aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-04-15 19:30:42 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-04-15 19:30:42 +0000
commita1ed71360d7fae4f1d6a1e214e28b622850988d9 (patch)
treeb02f9c7997b7ca7443de1715a889ada09df83716 /include
parent34b6a8c305532ecbaf30b831232b6ac1f0cf8f15 (diff)
downloadgdb-a1ed71360d7fae4f1d6a1e214e28b622850988d9.zip
gdb-a1ed71360d7fae4f1d6a1e214e28b622850988d9.tar.gz
gdb-a1ed71360d7fae4f1d6a1e214e28b622850988d9.tar.bz2
Check in new generated bfd.h to go with:
Thu Apr 15 09:09:18 1993 Jim Kingdon (kingdon@cygnus.com) * bfd-in.h (bfd_error), bfd.c (bfd_errmsgs): Add file_truncated. * format.c (bfd_check_error): Check error return from _bfd_check_format routines. Wed Apr 14 23:48:25 1993 Jim Kingdon (kingdon@cygnus.com) * rs6000-core.c (rs6000coff_core_p): Improve error checking and recognize .data section if present.
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog12
-rw-r--r--include/bfd.h4
2 files changed, 16 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 7e8e482..01c7937 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,5 +1,17 @@
+Thu Apr 15 09:24:21 1993 Jim Kingdon (kingdon@cygnus.com)
+
+ * bfd.h: Updated for file_truncated error.
+
+Thu Apr 8 10:53:47 1993 Ian Lance Taylor (ian@cygnus.com)
+
+ * ansidecl.h: If no ANSI, define const to be empty.
+
Thu Apr 1 09:00:10 1993 Jim Kingdon (kingdon@cygnus.com)
+ * dis-asm.h: Declare a29k and i960 print_insn_*.
+
+ * dis-asm.h: Add print_address_func and related stuff.
+
* dis-asm.h (dis_asm_read_memory): Fix prototype.
Wed Mar 31 17:40:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
diff --git a/include/bfd.h b/include/bfd.h
index b862721..73ba9d5 100644
--- a/include/bfd.h
+++ b/include/bfd.h
@@ -212,6 +212,10 @@ typedef enum bfd_error {
file_ambiguously_recognized, no_contents,
bfd_error_nonrepresentable_section,
no_debug_section, bad_value,
+
+ /* An input file is shorter than expected. */
+ file_truncated,
+
invalid_error_code} bfd_ec;
extern bfd_ec bfd_error;