| informationsyndicateUTC clock | event counters The last message was received 1.08 years ago at 00:00 on Jan 16, 2011 0 messages so far today, 0 messages yesterday 0 messages so far this week, 0 messages last week 0 messages so far this month, 0 messages last month 15837 messages since the first one, 8.1 years ago, for an average of 4.48 hours between messages recent messages date | project | content | link |
|---|
| 00:00 on Jan 16, 2011 | gdb | Commit by gdbadmin :: src/gdb/version.in: No log message | # | | 00:00 on Jan 16, 2011 | gdb | Commit by gdbadmin on gdb_7_2-branch :: src/gdb/version.in: No log message | # | | 00:00 on Jan 15, 2011 | gdb | Commit by gdbadmin on gdb_7_2-branch :: src/gdb/version.in: No log message | # | | 00:00 on Jan 15, 2011 | gdb | Commit by gdbadmin :: src/gdb/version.in: No log message | # | | 20:37 on Jan 14, 2011 | gdb | Commit by qiyao :: src/gdb/ (ChangeLog arm-tdep.c): 2011-01-14 Yao Qi <yao at codesourcery dot com>
* arm-tdep.c (arm_register_reggroup_p): FPS register is in
save_reggroup, restore_reggroup and all_reggroup. | # | | 20:19 on Jan 14, 2011 | gdb | Commit by brobecke on gdb_7_2-branch :: src/gdb/testsuite/ (3 files in 2 dirs): new testcase printing wchar_t characters and strings
gdb/testsuite/ChangeLog:
* gdb.base/wchar.c, gdb.base/wchar.exp: New testcases. | # | | 20:18 on Jan 14, 2011 | gdb | Commit by brobecke on gdb_7_2-branch :: src/gdb/testsuite/ (5 files in 3 dirs): new testcase for Ada Wide Wide Characters and Strings
gdb/testsuite/ChangeLog:
* gdb.ada/widewide: New testcase. | # | | 20:18 on Jan 14, 2011 | gdb | Commit by brobecke on gdb_7_2-branch :: src/gdb/ (ChangeLog ada-valprint.c c-valprint.c): Fix printing of Wide_Character & Wide_Wide_Character entities.
Wide_Characters and Wide_Wide_Characters are incorrectly printed.
Consider for instance:
Medium : Wide_Character := Wide_Character'Val(16#dead#);
Trying to print the value of this variable yields:
(gdb) p medium
$1 = 57005 '["ad"]'
The integer value is correct (57005 = 0xdead), but the character
representation is not, it should be:
$1 = 57005 '["dead"]'
Same for Wide_Wide_Characters.
There were two issues:
(a) The first issue was in ada-valprint, where we were assuming
that character types were 1 byte long;
(b) The second problem was in c-valprint, where we were down-casting
the integer value of the character to type `unsigned char',
causing use to lose all but the lowest byte.
gdb/ChangeLog:
* ada-valprint. (ada_printchar): Use the correct type length
in call to ada_emit_char.
* c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR. | # | | 20:18 on Jan 14, 2011 | gdb | Commit by brobecke on gdb_7_2-branch :: src/gdb/ (ChangeLog ada-valprint.c): [Ada] Fix printing of Wide_Wide_Strings
This fixes the printing of Wide_Wide_String objects. For instance,
consider:
My_WWS : Wide_Wide_String := " helo";
Before this patch is applied, GDB prints:
(gdb) print my_wws
$1 = " ["00"]h["00"]e"
gdb/ChangeLog:
* ada-valprint.c (ada_emit_char): Remove strange code.
Check that c is <= UCHAR_MAX before passing it to isascii.
(char_at): Do not assume that TYPE_LEN is either 1 or 2. | # | | 19:33 on Jan 14, 2011 | gdb | Commit by brobecke :: src/gdb/testsuite/ (3 files in 2 dirs): new testcase printing wchar_t characters and strings
gdb/testsuite/ChangeLog:
* gdb.base/wchar.c, gdb.base/wchar.exp: New testcases. | # | | 19:33 on Jan 14, 2011 | gdb | Commit by brobecke :: src/gdb/testsuite/ (5 files in 3 dirs): new testcase for Ada Wide Wide Characters and Strings
gdb/testsuite/ChangeLog:
* gdb.ada/widewide: New testcase. | # | | 19:33 on Jan 14, 2011 | gdb | Commit by brobecke :: src/: No log message | # | | 19:33 on Jan 14, 2011 | gdb | Commit by brobecke :: src/gdb/ (ChangeLog ada-valprint.c c-valprint.c): Fix printing of Wide_Character & Wide_Wide_Character entities.
Wide_Characters and Wide_Wide_Characters are incorrectly printed.
Consider for instance:
Medium : Wide_Character := Wide_Character'Val(16#dead#);
Trying to print the value of this variable yields:
(gdb) p medium
$1 = 57005 '["ad"]'
The integer value is correct (57005 = 0xdead), but the character
representation is not, it should be:
$1 = 57005 '["dead"]'
Same for Wide_Wide_Characters.
There were two issues:
(a) The first issue was in ada-valprint, where we were assuming
that character types were 1 byte long;
(b) The second problem was in c-valprint, where we were down-casting
the integer value of the character to type `unsigned char',
causing use to lose all but the lowest byte.
gdb/ChangeLog:
* ada-valprint. (ada_printchar): Use the correct type length
in call to ada_emit_char.
* c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR. | # | | 18:39 on Jan 14, 2011 | gdb | Commit by muller :: src/gdb/ (3 files): - solib-som.h (hpux_major_release): Declare variable here. * solib-som.c: Remove <sys/utsname.h> header. (DEFAULT_HPUX_MAJOR_RELEASE): New macro. (hpux_major_release): Make global, change default value to DEFAULT_HPUX_MAJOR_RELEASE. (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE. * hppa-hpux-nat.c: Add <sys/utsname.h> include. Add "solib-som.h" header. (set_hpux_major_release): New function. (_initialize_hppa_hpux_nat): Call set_hpux_major_release.
| # | | 18:16 on Jan 14, 2011 | gdb | Commit by vapier :: src/gdb/ (ChangeLog configure.tgt): gdb: extend Linux osabi match
The current osabi default matching misses all *-uclinux tuples.
Signed-off-by: Mike Frysinger <vapier at gentoo dot org> | # | | 13:53 on Jan 14, 2011 | gdb | Commit by brobecke :: src/gdb/ (3 files): fix ARI warnings introduced by ia64-hpux patches
gdb/ChangeLog:
* ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
new-line at end of warning message.
(ia64_hpux_store_register): Remove trailing new-line at end of
error message.
* ia64-hpux-tdep.c: Rephrase comment.
* solib-ia64-hpux.c (struct dld_info): Change type of field
dld_flags from "long long" to ULONGEST. | # | | 13:47 on Jan 14, 2011 | gdb | Commit by palves :: src/gdb/ (ChangeLog target.c target.h): - target.h (deprecated_child_ops): Delete declaration. * target.c (deprecated_child_ops): Delete definition.
| # | | 13:43 on Jan 14, 2011 | gdb | Commit by palves :: src/gdb/configure.ac: gdb/
* Makefile.in (hpux-thread.o): Delete rule.
* configure.ac: Don't check for HPUX DCE threads support.
* configure, config.in: Regenerate.
* hppa-hpux-nat.c (child_suppress_run): Delete.
(hppa_hpux_child_can_run): Delete.
(_initialize_hppa_hpux_nat): Don't override to_can_run.
* hpux-thread.c: Delete. | # | | 13:38 on Jan 14, 2011 | gdb | Commit by palves :: src/gdb/ (5 files): - Makefile.in (hpux-thread.o): Delete rule. * configure.ac: Don't check for HPUX DCE threads support. * configure, config.in: Regenerate. * hppa-hpux-nat.c (child_suppress_run): Delete. (hppa_hpux_child_can_run): Delete. (_initialize_hppa_hpux_nat): Don't override to_can_run. * hpux-thread.c: Delete.
| # | | 00:00 on Jan 14, 2011 | gdb | Commit by gdbadmin on gdb_7_2-branch :: src/gdb/version.in: No log message | # |
|