aboutsummaryrefslogtreecommitdiff
path: root/gdb/valprint.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-05-22 03:55:58 -0600
committerTom Tromey <tom@tromey.com>2017-06-12 15:04:56 -0600
commit30a254669b16b86166fed1f9a4c4f9cc55a07fdc (patch)
treeaea05de61cdb0d22c97c6ae0487f992802a1feb3 /gdb/valprint.h
parentb3464d0316235899d9facf81896d7a427d5cd6d0 (diff)
downloadfsf-binutils-gdb-30a254669b16b86166fed1f9a4c4f9cc55a07fdc.zip
fsf-binutils-gdb-30a254669b16b86166fed1f9a4c4f9cc55a07fdc.tar.gz
fsf-binutils-gdb-30a254669b16b86166fed1f9a4c4f9cc55a07fdc.tar.bz2
Don't always zero pad in print_*_chars
This changes print_octal_chars and print_decimal_chars to never zero pad, and changes print_binary_chars and print_hex_chars to only optionally zero-pad, based on a flag. ChangeLog 2017-06-12 Tom Tromey <tom@tromey.com> PR exp/16225: * valprint.h (print_binary_chars, print_hex_chars): Update. * valprint.c (val_print_type_code_int): Update. (print_binary_chars): Add "zero_pad" argument. (emit_octal_digit): New function. (print_octal_chars): Don't zero-pad. (print_decimal_chars): Likewise. (print_hex_chars): Add "zero_pad" argument. * sh64-tdep.c (sh64_do_fp_register): Update. * regcache.c (regcache::dump): Update. * printcmd.c (print_scalar_formatted): Update. * infcmd.c (default_print_one_register_info): Update. 2017-06-12 Tom Tromey <tom@tromey.com> PR exp/16225: * gdb.reverse/i386-sse-reverse.exp: Update tests. * gdb.arch/vsx-regs.exp: Update tests. * gdb.arch/s390-vregs.exp (hex128): New proc. Update test. * gdb.arch/altivec-regs.exp: Update tests.
Diffstat (limited to 'gdb/valprint.h')
-rw-r--r--gdb/valprint.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/valprint.h b/gdb/valprint.h
index 835296a..8bfad21 100644
--- a/gdb/valprint.h
+++ b/gdb/valprint.h
@@ -132,7 +132,7 @@ extern void val_print_scalar_formatted (struct type *,
struct ui_file *);
extern void print_binary_chars (struct ui_file *, const gdb_byte *,
- unsigned int, enum bfd_endian);
+ unsigned int, enum bfd_endian, bool);
extern void print_octal_chars (struct ui_file *, const gdb_byte *,
unsigned int, enum bfd_endian);
@@ -141,7 +141,7 @@ extern void print_decimal_chars (struct ui_file *, const gdb_byte *,
unsigned int, enum bfd_endian);
extern void print_hex_chars (struct ui_file *, const gdb_byte *,
- unsigned int, enum bfd_endian);
+ unsigned int, enum bfd_endian, bool);
extern void print_char_chars (struct ui_file *, struct type *,
const gdb_byte *, unsigned int, enum bfd_endian);