diff options
author | Pierre Muller <muller@sourceware.org> | 2010-04-21 23:21:04 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2010-04-21 23:21:04 +0000 |
commit | 9a22f0d0aeec70f4ee1908008f3a2defaad6f7dd (patch) | |
tree | a36134950efba04d0c0104c79b7714b47e7e5d49 /gdb/ChangeLog | |
parent | 32d7376d07d6b1ae69b5e15d6b546a07f9fee446 (diff) | |
download | gdb-9a22f0d0aeec70f4ee1908008f3a2defaad6f7dd.zip gdb-9a22f0d0aeec70f4ee1908008f3a2defaad6f7dd.tar.gz gdb-9a22f0d0aeec70f4ee1908008f3a2defaad6f7dd.tar.bz2 |
gdb ChangeLog
* gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
fields.
* gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
builtin_char32 fields.
* printcmd.c (decode_format): Set char size to '\0'
for strings unless explicit size is given.
(print_formatted): Correct calculation of NEXT_ADDRESS
for 16 or 32 bit strings.
(do_examine): Do not force byte size for strings.
Use builtin_char16 and builtin_char32 types to display
16 or 32 bit-wide strings.
(x_command): Set LAST_SIZE to 'b' for string type.
gdb/doc ChangeLog
* gdb.texinfo (Examining memory): Update for
change in string display with explicit size.
gdb/testsuite ChangeLog
* gdb.base/charset.c (Strin16, String32): New variables.
* gdb.base/charset.exp (gdb_test): Test correct display
of 16 or 32 bit strings.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 995aa80..4fe34f5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,18 @@ +2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr> + + * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32 + fields. + * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and + builtin_char32 fields. + * printcmd.c (decode_format): Set char size to '\0' + for strings unless explicit size is given. + (print_formatted): Correct calculation of NEXT_ADDRESS + for 16 or 32 bit strings. + (do_examine): Do not force byte size for strings. + Use builtin_char16 and builtin_char32 types to display + 16 or 32 bit-wide strings. + (x_command): Set LAST_SIZE to 'b' for string type. + 2010-04-21 H.J. Lu <hongjiu.lu@intel.com> PR corefiles/11523 |