diff options
author | Nick Clifton <nickc@redhat.com> | 2008-06-12 11:57:40 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-06-12 11:57:40 +0000 |
commit | b922d5904f4a0ac69d5abfc8e24826b17012f334 (patch) | |
tree | 2d7ebe1abaceacb2bfad821c219956db6808eb27 /binutils/budbg.h | |
parent | 5590fba9534e101a6f41d7ad801442cf7af17f98 (diff) | |
download | gdb-b922d5904f4a0ac69d5abfc8e24826b17012f334.zip gdb-b922d5904f4a0ac69d5abfc8e24826b17012f334.tar.gz gdb-b922d5904f4a0ac69d5abfc8e24826b17012f334.tar.bz2 |
PR binutils/6483
* objdump.c (dump_bfd): If the -g option found no STABS or IEEE
debug information to display, try dumping DWARF information
instead.
* rddbg.c (read_debugging_info): Add a parameter to suppress the
display of a warning message when no debug information is found.
* budbg.h (read_debugging_info): Update prototype.
* objcopy.c (copy_object): Continue to allow read_debugging_info
to produce warning messages.
* doc/binutils.texi (--debugging): Document new behaviour of the
-g/--debugging option.
Diffstat (limited to 'binutils/budbg.h')
-rw-r--r-- | binutils/budbg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/budbg.h b/binutils/budbg.h index a8c99dd..cad6ac7 100644 --- a/binutils/budbg.h +++ b/binutils/budbg.h @@ -1,5 +1,5 @@ /* budbg.c -- Interfaces to the generic debugging information routines. - Copyright 1995, 1996, 2002, 2003, 2007 Free Software Foundation, Inc. + Copyright 1995, 1996, 2002, 2003, 2007, 2008 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 void *read_debugging_info (bfd *, asymbol **, long); +extern void *read_debugging_info (bfd *, asymbol **, long, bfd_boolean); /* Routine used to print generic debugging information. */ |