- Merge from gdb-7.5.1-30.fc18.src.rpm. 7.5.1 gives: * An "Attempt to dereference a generic pointer" errors (-var-create). * Backtrace problems on x32 (PR backtrace/14646). * next/step/finish problems on x32 (PR gdb/14647). * A "malformed linespec error: unexpected keyword, [...]" error (PR breakpoints/14643). * GDB crash while stepping through powerpc (32bits) code. * A failed assertion in linux_ptrace_test_ret_to_nx. * A "!frame_id_inlined_p (frame_id)" failed assertion. * A "No more reverse-execution history." error during reverse "next" execution (PR 14548). * Incomplete command descriptions in "apropos" output. * PR gdb/14494 (a GDB crash difficult to characterize). 7.5 gives: * Go language support. * New targets (x32 ABI, microMIPS, Renesas RL78, HP OpenVMS ia64). * More Python scripting improvements. * SDT (Static Defined Tracing) probes support with SystemTap probes. * GDBserver improvements (stdio connections, target-side evaluation of breakpoint conditions, remote protocol improvements). * Other miscellaneous improvements (ability to stop when a shared library is loaded/unloaded, dynamic printf, etc). * Reverse debugging on ARM. - Do not provide a custom (safe) auto-load dir. OBS-URL: https://build.opensuse.org/request/show/147743 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gdb?expand=0&rev=90
29 lines
932 B
Diff
29 lines
932 B
Diff
http://sourceware.org/ml/gdb-cvs/2012-09/msg00082.html
|
|
|
|
### src/gdb/ChangeLog 2012/09/17 07:15:47 1.14664
|
|
### src/gdb/ChangeLog 2012/09/17 07:26:54 1.14665
|
|
## -1,3 +1,8 @@
|
|
+2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
|
|
+
|
|
+ * infrun.c (restore_infcall_suspend_state): Eliminate single-use
|
|
+ variable LEN.
|
|
+
|
|
2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
PR 14119
|
|
--- src/gdb/infrun.c 2012/09/17 07:09:34 1.558
|
|
+++ src/gdb/infrun.c 2012/09/17 07:26:55 1.559
|
|
@@ -6777,11 +6777,10 @@
|
|
if (inf_state->siginfo_gdbarch == gdbarch)
|
|
{
|
|
struct type *type = gdbarch_get_siginfo_type (gdbarch);
|
|
- size_t len = TYPE_LENGTH (type);
|
|
|
|
/* Errors ignored. */
|
|
target_write (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
|
|
- inf_state->siginfo_data, 0, len);
|
|
+ inf_state->siginfo_data, 0, TYPE_LENGTH (type));
|
|
}
|
|
|
|
/* The inferior can be gone if the user types "print exit(0)"
|