diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-03-22 20:51:47 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-03-22 20:51:47 +0000 |
commit | 15731fdc0b64a4baa57c22a68114d4426c0e1ddc (patch) | |
tree | dd807184f13ad460031b0bea4a960a6af905d04c /binutils/budbg.h | |
parent | c3dffbd7cd1c444bcf7059afe82fd1ae1d3c09fe (diff) | |
download | gdb-15731fdc0b64a4baa57c22a68114d4426c0e1ddc.zip gdb-15731fdc0b64a4baa57c22a68114d4426c0e1ddc.tar.gz gdb-15731fdc0b64a4baa57c22a68114d4426c0e1ddc.tar.bz2 |
* stabs.c (struct stab_handle): Add field abfd.
(start_stab): Add abfd parameter.
(parse_stab_string): Skip the symbol leading char when searching
for the value of a global symbol.
* budbg.h (start_stab): Update declaration.
* rddbg.c (read_section_stabs_debugging_info): Pass abfd to
start_stab.
(read_symbol_stabs_debugging_info): Likewise.
Diffstat (limited to 'binutils/budbg.h')
-rw-r--r-- | binutils/budbg.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/binutils/budbg.h b/binutils/budbg.h index aec0bf2..faf8d16 100644 --- a/binutils/budbg.h +++ b/binutils/budbg.h @@ -32,17 +32,23 @@ extern PTR read_debugging_info PARAMS ((bfd *, asymbol **, long)); extern boolean print_debugging_info PARAMS ((FILE *, PTR)); -/* Routines used to read stabs information. */ +/* Routines used to read and write stabs information. */ -extern PTR start_stab PARAMS ((PTR, boolean)); +extern PTR start_stab PARAMS ((PTR, bfd *, boolean, asymbol **, long)); 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 write_stabs_in_sections_debugging_info + PARAMS ((bfd *, PTR, bfd_byte **, bfd_size_type *, bfd_byte **, + bfd_size_type *)); + +/* Routines used to read and write IEEE debugging information. */ extern boolean parse_ieee PARAMS ((PTR, bfd *, const bfd_byte *, bfd_size_type)); +extern boolean write_ieee_debugging_info PARAMS ((bfd *, PTR)); + #endif |