From: Ulrich Weigand Date: Mon, 21 Mar 2011 17:23:05 +0000 (+0000) Subject: * tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason X-Git-Tag: cgen-snapshot-20110401~174 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a2fbb504b854c32aa38572515a48410f81a5ce6;p=external%2Fbinutils.git * tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason field in returned unwinder. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e532ef8..efc3aa2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2011-03-21 Ulrich Weigand + + * tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason + field in returned unwinder. + 2012-03-21 Jan Kratochvil * ada-lang.c (replace_operator_with_call): Copy also GDBARCH. diff --git a/gdb/tramp-frame.c b/gdb/tramp-frame.c index d4d3a45..c7b1d9f 100644 --- a/gdb/tramp-frame.c +++ b/gdb/tramp-frame.c @@ -163,6 +163,7 @@ tramp_frame_prepend_unwinder (struct gdbarch *gdbarch, unwinder->type = tramp_frame->frame_type; unwinder->unwind_data = data; unwinder->sniffer = tramp_frame_sniffer; + unwinder->stop_reason = default_frame_unwind_stop_reason; unwinder->this_id = tramp_frame_this_id; unwinder->prev_register = tramp_frame_prev_register; frame_unwind_prepend_unwinder (gdbarch, unwinder);