diff options
author | Andrew Burgess <aburgess@broadcom.com> | 2013-07-11 09:07:41 +0000 |
---|---|---|
committer | Andrew Burgess <aburgess@broadcom.com> | 2013-07-11 09:07:41 +0000 |
commit | cf0063592da7c1a86749c717a32d6ba2880e4bab (patch) | |
tree | 64f9f07f57f741a6bfb2cf3212003d21322d2e7c /gdb/infcmd.c | |
parent | 99e17d38400f5bb88e60ea7780c20b5fe67772b2 (diff) | |
download | gdb-cf0063592da7c1a86749c717a32d6ba2880e4bab.zip gdb-cf0063592da7c1a86749c717a32d6ba2880e4bab.tar.gz gdb-cf0063592da7c1a86749c717a32d6ba2880e4bab.tar.bz2 |
Reuse print_hex_chars function.
http://sourceware.org/ml/gdb-patches/2013-07/msg00234.html
* infcmd.c (default_print_one_register_info): Reuse code in
print_hex_chars.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 10a589e..154cde2 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -2052,17 +2052,8 @@ default_print_one_register_info (struct ui_file *file, value_embedded_offset (val), 0, file, 0, val, &opts, current_language); - fprintf_filtered (file, "\t(raw 0x"); - for (j = 0; j < TYPE_LENGTH (regtype); j++) - { - int idx; - - if (byte_order == BFD_ENDIAN_BIG) - idx = j; - else - idx = TYPE_LENGTH (regtype) - 1 - j; - fprintf_filtered (file, "%02x", (unsigned char) valaddr[idx]); - } + fprintf_filtered (file, "\t(raw "); + print_hex_chars (file, valaddr, TYPE_LENGTH (regtype), byte_order); fprintf_filtered (file, ")"); } else |