diff options
author | Daniel Jacobowitz <drow@false.org> | 2001-10-12 23:51:30 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2001-10-12 23:51:30 +0000 |
commit | e88c90f2c57f3b9f0d49af8f458f02eeba327a70 (patch) | |
tree | 29a0c0f7dc975bd6a98b0362c9cc0679c91eab0c /gdb/printcmd.c | |
parent | f4846649b32c8b6020a6a89c436963c044b63464 (diff) | |
download | gdb-e88c90f2c57f3b9f0d49af8f458f02eeba327a70.zip gdb-e88c90f2c57f3b9f0d49af8f458f02eeba327a70.tar.gz gdb-e88c90f2c57f3b9f0d49af8f458f02eeba327a70.tar.bz2 |
2001-10-12 Daniel Jacobowitz <drow@mvista.com>
* symtab.h (struct block): (ALL_BLOCK_SYMBOLS): New macro.
* symtab.c (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
(make_symbol_completion_list): Likewise.
(make_symbol_overload_list): Likewise.
* buildsym.c (finish_block): Likewise.
* breakpoint.c (get_catch_sals): Likewise.
* mdebugread.c (mylookup_symbol): Likewise.
* objfiles.c (objfile_relocate): Likewise.
* printcmd.c (print_frame_args): Likewise.
* stack.c (print_block_frame_locals): Likewise.
(print_block_frame_labels): Likewise.
(print_frame_arg_vars): Likewise.
* symmisc.c (dump_symtab): Likewise.
* tracepoint.c (add_local_symbols): Likewise.
(scope_info): Likewise.
2001-10-12 Daniel Jacobowitz <drow@mvista.com>
* mi-cmd-stack.c (list_args_or_locals): Use ALL_BLOCK_SYMBOLS.
2001-10-12 Daniel Jacobowitz <drow@mvista.com>
* generic/gdbtk-cmds.c (gdb_listfuncs): Use ALL_BLOCK_SYMBOLS.
* generic/gdbtk-stack.c (gdb_block_vars): Likewise.
(gdb_get_blocks): Likewise.
(gdb_get_vars_command): Likewise.
5~
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r-- | gdb/printcmd.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c index fa75af8..c601d88 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -1783,7 +1783,6 @@ print_frame_args (struct symbol *func, struct frame_info *fi, int num, struct ui_file *stream) { struct block *b = NULL; - int nsyms = 0; int first = 1; register int i; register struct symbol *sym; @@ -1806,12 +1805,9 @@ print_frame_args (struct symbol *func, struct frame_info *fi, int num, if (func) { b = SYMBOL_BLOCK_VALUE (func); - nsyms = BLOCK_NSYMS (b); - - for (i = 0; i < nsyms; i++) + ALL_BLOCK_SYMBOLS (b, i, sym) { QUIT; - sym = BLOCK_SYM (b, i); /* Keep track of the highest stack argument offset seen, and skip over any kinds of symbols we don't care about. */ |