forked from qt-creator/qt-creator
debugger: update our gdb patches
Change-Id: I1c81b28ab22ec11dcef1f58030b5906f4fc6323c Reviewed-on: http://codereview.qt.nokia.com/652 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
NOTE: This relates to http://sourceware.org/bugzilla/show_bug.cgi?id=11497
|
||||
|
||||
Not clear whether the patch is needed at all.
|
||||
|
||||
--- a/gdb/infrun.c
|
||||
+++ b/gdb/infrun.c
|
||||
@@ -4126,7 +4127,9 @@ infrun: not switching back to stepped thread, it has vanished\n");
|
||||
@@ -4627,7 +4627,9 @@ process_event_stop_test:
|
||||
|
||||
if (execution_direction != EXEC_REVERSE
|
||||
&& ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
|
||||
&& ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
|
||||
- && in_solib_dynsym_resolve_code (stop_pc))
|
||||
+ && in_solib_dynsym_resolve_code (stop_pc)
|
||||
+ && !(ecs->event_thread->step_range_start > 1
|
||||
+ && in_solib_dynsym_resolve_code (ecs->event_thread->step_range_start)))
|
||||
{
|
||||
CORE_ADDR pc_after_resolver =
|
||||
gdbarch_skip_solib_resolver (gdbarch, stop_pc);
|
||||
|
||||
------------------------------------------------------------------------
|
||||
|
||||
NOTE: This relates to http://sourceware.org/bugzilla/show_bug.cgi?id=11497
|
||||
gdbarch_skip_solib_resolver (gdbarch, stop_pc);
|
||||
|
||||
Reference in New Issue
Block a user