diff options
author | Joel Brobecker <brobecker@gnat.com> | 2010-11-03 23:20:33 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2010-11-03 23:20:33 +0000 |
commit | 9addb3b96c4124014e469442d5f2e688ac34e2eb (patch) | |
tree | 11dad231d0e00c49eae827a80a28d3cf3f3fff2f /gdb/ada-valprint.c | |
parent | 75be741bdf0c664773f0cb0668a401887ee7706d (diff) | |
download | gdb-9addb3b96c4124014e469442d5f2e688ac34e2eb.zip gdb-9addb3b96c4124014e469442d5f2e688ac34e2eb.tar.gz gdb-9addb3b96c4124014e469442d5f2e688ac34e2eb.tar.bz2 |
[Ada] move some variables to scope where they are used
I noticed that some variables are only used inside one side of
an if/else blob. So I moved these variables inside that block for
better clarity.
gdb/ChangeLog:
* ada-valprint.c (ada_val_print_array): Move variables `eltlen'
and `len' declaration and computation inside block where they
are being used.
Diffstat (limited to 'gdb/ada-valprint.c')
-rw-r--r-- | gdb/ada-valprint.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/gdb/ada-valprint.c b/gdb/ada-valprint.c index 2ab2ba2..ae2a47d 100644 --- a/gdb/ada-valprint.c +++ b/gdb/ada-valprint.c @@ -603,23 +603,24 @@ ada_val_print_array (struct type *type, const gdb_byte *valaddr, { enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type)); struct type *elttype = TYPE_TARGET_TYPE (type); - unsigned int eltlen; - unsigned int len; int result = 0; - if (elttype == NULL) - eltlen = 0; - else - eltlen = TYPE_LENGTH (elttype); - if (eltlen == 0) - len = 0; - else - len = TYPE_LENGTH (type) / eltlen; - /* For an array of chars, print with string syntax. */ if (ada_is_string_type (type) && (options->format == 0 || options->format == 's')) { + unsigned int eltlen; + unsigned int len; + + if (elttype == NULL) + eltlen = 0; + else + eltlen = TYPE_LENGTH (elttype); + if (eltlen == 0) + len = 0; + else + len = TYPE_LENGTH (type) / eltlen; + if (options->prettyprint_arrays) print_spaces_filtered (2 + 2 * recurse, stream); |