Browse Source

Reviewed and approved by Kevin Buettner <kevinb@redhat.com>

2002-09-09  Fred Fish  <fnf@intrinsity.com>
	* printcmd.c (print_scalar_formatted): "len" is the number of
	target bytes, NOT the number of target bits.
drow-cplus-branch
Fred Fish 24 years ago
parent
commit
d0aee0c4b8
  1. 5
      gdb/ChangeLog
  2. 6
      gdb/printcmd.c

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2002-09-09 Fred Fish <fnf@intrinsity.com>
* printcmd.c (print_scalar_formatted): "len" is the number of
target bytes, NOT the number of target bits.
2002-09-09 Elena Zannoni <ezannoni@redhat.com> 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
From: Emmanuel Thome' <thome@lix.polytechnique.fr> From: Emmanuel Thome' <thome@lix.polytechnique.fr>

6
gdb/printcmd.c

@ -391,10 +391,10 @@ print_scalar_formatted (char *valaddr, struct type *type, int format, int size,
val_long = unpack_long (type, valaddr); val_long = unpack_long (type, valaddr);
/* If the value is a pointer, and pointers and addresses are not the /* If the value is a pointer, and pointers and addresses are not the
same, then at this point, the value's length is TARGET_ADDR_BIT, not same, then at this point, the value's length (in target bytes) is
TYPE_LENGTH (type). */ TARGET_ADDR_BIT/TARGET_CHAR_BIT, not TYPE_LENGTH (type). */
if (TYPE_CODE (type) == TYPE_CODE_PTR) if (TYPE_CODE (type) == TYPE_CODE_PTR)
len = TARGET_ADDR_BIT; len = TARGET_ADDR_BIT / TARGET_CHAR_BIT;
/* If we are printing it as unsigned, truncate it in case it is actually /* If we are printing it as unsigned, truncate it in case it is actually
a negative signed value (e.g. "print/u (short)-1" should print 65535 a negative signed value (e.g. "print/u (short)-1" should print 65535

Loading…
Cancel
Save