From ddd7a8e76d39c3c3ce8285d2eb5a41c649017a76 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 14 Sep 2012 07:00:42 +0000 Subject: * printcmd.c (ui_printf): Eliminate single-use variable PARAM_LEN. --- gdb/printcmd.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gdb/printcmd.c') diff --git a/gdb/printcmd.c b/gdb/printcmd.c index 9e8cd65..38c7b0e 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -2267,7 +2267,6 @@ ui_printf (char *arg, struct ui_file *stream) /* Parameter data. */ struct type *param_type = value_type (val_args[i]); - unsigned int param_len = TYPE_LENGTH (param_type); struct gdbarch *gdbarch = get_type_arch (param_type); enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); @@ -2329,8 +2328,8 @@ ui_printf (char *arg, struct ui_file *stream) /* Conversion between different DFP types. */ if (TYPE_CODE (param_type) == TYPE_CODE_DECFLOAT) - decimal_convert (param_ptr, param_len, byte_order, - dec, dfp_len, byte_order); + decimal_convert (param_ptr, TYPE_LENGTH (param_type), + byte_order, dec, dfp_len, byte_order); else /* If this is a non-trivial conversion, just output 0. A correct converted value can be displayed by explicitly -- cgit v1.1