From: Maciej W. Rozycki Date: Fri, 15 Jun 2012 08:50:29 +0000 (+0000) Subject: * infrun.c (handle_inferior_event): Correct indentation. X-Git-Tag: sid-snapshot-20120701~174 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a210c23822203e9688401cee6697ebd2f3df11dc;p=platform%2Fupstream%2Fbinutils.git * infrun.c (handle_inferior_event): Correct indentation. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3e94952..37148af 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-06-15 Maciej W. Rozycki + + * infrun.c (handle_inferior_event): Correct indentation. + 2012-06-14 Doug Evans * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH. diff --git a/gdb/infrun.c b/gdb/infrun.c index a260620..95a3ae9 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -4069,10 +4069,10 @@ handle_inferior_event (struct execution_control_state *ecs) skip_inline_frames call would break things. Fortunately that's an extremely unlikely scenario. */ if (!pc_at_non_inline_function (aspace, stop_pc, &ecs->ws) - && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP - && ecs->event_thread->control.trap_expected - && pc_at_non_inline_function (aspace, - ecs->event_thread->prev_pc, + && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP + && ecs->event_thread->control.trap_expected + && pc_at_non_inline_function (aspace, + ecs->event_thread->prev_pc, &ecs->ws))) { skip_inline_frames (ecs->ptid);