diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-07-11 20:02:30 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-07-11 20:02:30 +0000 |
commit | b4c96d0d372cd69f536cb481d0c9554cf9f0eda8 (patch) | |
tree | f1493951e1d44b983758309afb226a00bb058edc /binutils/prdbg.c | |
parent | 7442e600c8d771f2d03c6df7415bbfcbf99759b6 (diff) | |
download | gdb-b4c96d0d372cd69f536cb481d0c9554cf9f0eda8.zip gdb-b4c96d0d372cd69f536cb481d0c9554cf9f0eda8.tar.gz gdb-b4c96d0d372cd69f536cb481d0c9554cf9f0eda8.tar.bz2 |
* Many files: Changes to avoid gcc warnings: Add ATTRIBUTE_UNUSED
as appropriate. Add variable initializations. Add casts.
* objdump.c (disassemble_bytes): Change j to bfd_vma.
* readelf.c (process_syminfo): Change i to unsigned int.
(display_debug_info): Change abbrev_number to unsigned long.
(process_mips_specific): Change fcnt to size_t.
Diffstat (limited to 'binutils/prdbg.c')
-rw-r--r-- | binutils/prdbg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/binutils/prdbg.c b/binutils/prdbg.c index 958cbd2..abd684d 100644 --- a/binutils/prdbg.c +++ b/binutils/prdbg.c @@ -1,5 +1,5 @@ /* prdbg.c -- Print out generic debugging information. - Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc. Written by Ian Lance Taylor <ian@cygnus.com>. This file is part of GNU Binutils. @@ -985,7 +985,7 @@ pr_fix_visibility (info, visibility) struct pr_handle *info; enum debug_visibility visibility; { - const char *s; + const char *s = NULL; char *t; unsigned int len; @@ -1602,7 +1602,7 @@ pr_typdef (p, name) static boolean pr_tag (p, name) PTR p; - const char *name; + const char *name ATTRIBUTE_UNUSED; { struct pr_handle *info = (struct pr_handle *) p; char *t; @@ -1856,7 +1856,7 @@ pr_end_block (p, addr) /*ARGSUSED*/ static boolean pr_end_function (p) - PTR p; + PTR p ATTRIBUTE_UNUSED; { return true; } |