aboutsummaryrefslogtreecommitdiff
path: root/binutils/budbg.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1996-01-04 21:35:04 +0000
committerIan Lance Taylor <ian@airs.com>1996-01-04 21:35:04 +0000
commitf51679867952529ebbe8edbe20f34271989b384c (patch)
tree6542f4e7b290a92bb5e5de40382974fe517531cb /binutils/budbg.h
parentf8254a3cc5d621c0362bceed642a8969db5fe161 (diff)
downloadgdb-f51679867952529ebbe8edbe20f34271989b384c.zip
gdb-f51679867952529ebbe8edbe20f34271989b384c.tar.gz
gdb-f51679867952529ebbe8edbe20f34271989b384c.tar.bz2
* ieee.c: New file with code to read IEEE debugging information.
* budbg.h (parse_ieee): Declare. * rddbg.c (read_debugging_info): Handle IEEE flavour files. (read_ieee_debugging_info): New static function. * Makefile.in: Rebuild dependencies. (CFILES): Add ieee.c. (OBJDUMP_OBJS): Add ieee.o.
Diffstat (limited to 'binutils/budbg.h')
-rw-r--r--binutils/budbg.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/binutils/budbg.h b/binutils/budbg.h
index e63841e..aec0bf2 100644
--- a/binutils/budbg.h
+++ b/binutils/budbg.h
@@ -1,5 +1,5 @@
/* budbg.c -- Interfaces to the generic debugging information routines.
- Copyright (C) 1995 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by Ian Lance Taylor <ian@cygnus.com>.
This file is part of GNU Binutils.
@@ -26,7 +26,7 @@
/* Routine used to read generic debugging information. */
-extern PTR read_debugging_info PARAMS ((bfd *));
+extern PTR read_debugging_info PARAMS ((bfd *, asymbol **, long));
/* Routine used to print generic debugging information. */
@@ -34,10 +34,15 @@ extern boolean print_debugging_info PARAMS ((FILE *, PTR));
/* Routines used to read stabs information. */
-extern PTR start_stab PARAMS ((PTR));
+extern PTR start_stab PARAMS ((PTR, boolean));
extern boolean finish_stab PARAMS ((PTR, PTR));
extern boolean parse_stab PARAMS ((PTR, PTR, int, int, bfd_vma, const char *));
+/* Routine used to read IEEE information. */
+
+extern boolean parse_ieee
+ PARAMS ((PTR, bfd *, const bfd_byte *, bfd_size_type));
+
#endif