diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-20 21:47:53 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-20 21:47:53 +0000 |
commit | 6bb0384f7ca5b2e5ad6a3cf0a676dfa3528d7a4a (patch) | |
tree | 89fe58d5ed51755ac5606af66cefd063bf5ae7f5 /gdb/mi | |
parent | 4d8907ac12142818530c77b52d39d50bcf9931c5 (diff) | |
download | gdb-6bb0384f7ca5b2e5ad6a3cf0a676dfa3528d7a4a.zip gdb-6bb0384f7ca5b2e5ad6a3cf0a676dfa3528d7a4a.tar.gz gdb-6bb0384f7ca5b2e5ad6a3cf0a676dfa3528d7a4a.tar.bz2 |
2004-01-20 Andrew Cagney <cagney@redhat.com>
* mi/mi-cmd-stack.c (list_args_or_locals): Move declaration of
sym2 to start of block.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-cmd-stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mi/mi-cmd-stack.c b/gdb/mi/mi-cmd-stack.c index af96785..9a2a9ec 100644 --- a/gdb/mi/mi-cmd-stack.c +++ b/gdb/mi/mi-cmd-stack.c @@ -286,12 +286,12 @@ list_args_or_locals (int locals, int values, struct frame_info *fi) if (print_me) { struct cleanup *cleanup_tuple = NULL; + struct symbol *sym2; if (values != PRINT_NO_VALUES) cleanup_tuple = make_cleanup_ui_out_tuple_begin_end (uiout, NULL); ui_out_field_string (uiout, "name", SYMBOL_PRINT_NAME (sym)); - struct symbol *sym2; if (!locals) sym2 = lookup_symbol (SYMBOL_NATURAL_NAME (sym), block, VAR_DOMAIN, |