This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] rx-tdep.c: Add default_frame_unwind_stop_reason to unwind initialization


I've just committed the patch below.  It fixes a build error due to a missing
stop reason initialization.

Kevin

	* rx-tdep.c (rx_frame_unwind): Add default_frame_unwind_stop_reason
	to the initialization.

Index: rx-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/rx-tdep.c,v
retrieving revision 1.5
diff -u -p -r1.5 rx-tdep.c
--- rx-tdep.c	1 Jan 2011 15:33:14 -0000	1.5
+++ rx-tdep.c	8 Apr 2011 21:43:25 -0000
@@ -455,6 +455,7 @@ rx_frame_prev_register (struct frame_inf
 
 static const struct frame_unwind rx_frame_unwind = {
   NORMAL_FRAME,
+  default_frame_unwind_stop_reason,
   rx_frame_this_id,
   rx_frame_prev_register,
   NULL,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]