summaryrefslogtreecommitdiff
path: root/gdb/printcmd.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-05-22 16:32:25 -0600
committerTom Tromey <tom@tromey.com>2017-06-12 15:04:57 -0600
commit4ac0cb1cf04f105586746a6cce5b0f93d76f2b33 (patch)
tree3fb05b0178669f51b7f69bcfc45eddcf43e686ea /gdb/printcmd.c
parent30a254669b16b86166fed1f9a4c4f9cc55a07fdc (diff)
Let print_decimal_chars handle signed values
This changes print_decimal_chars to handle signed values. gdb/ChangeLog 2017-06-12 Tom Tromey <tom@tromey.com> PR exp/16225: * valprint.h (print_decimal_chars): Update. * valprint.c (maybe_negate_by_bytes): New function. (print_decimal_chars): Add "is_signed" argument. * printcmd.c (print_scalar_formatted): Update.
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r--gdb/printcmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c
index 66395d594e..84f41f5b74 100644
--- a/gdb/printcmd.c
+++ b/gdb/printcmd.c
@@ -374,7 +374,8 @@ print_scalar_formatted (const gdb_byte *valaddr, struct type *type,
return;
case 'u':
case 'd':
- print_decimal_chars (stream, valaddr, len, byte_order);
+ print_decimal_chars (stream, valaddr, len, !TYPE_UNSIGNED (type),
+ byte_order);
return;
case 't':
print_binary_chars (stream, valaddr, len, byte_order, size > 0);