This is the mail archive of the gdb-patches@sources.redhat.com 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]

[PATCH] Fix proble


Oops, this slipped in when I converted the FRAMELESS_SIGNAL macro to a
function.

Committed.

Mark

Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
	frameless_look_for_prologue, such that we actually call this
	function.

Index: i386-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/i386-tdep.c,v
retrieving revision 1.69
diff -u -p -r1.69 i386-tdep.c
--- i386-tdep.c 2 Jul 2002 09:12:37 -0000 1.69
+++ i386-tdep.c 3 Jul 2002 09:37:35 -0000
@@ -481,7 +481,7 @@ i386_frameless_signal_p (struct frame_in
 {
   return (frame->next
 	  && frame->next->signal_handler_caller
-	  && frameless_look_for_prologue);
+	  && frameless_look_for_prologue (frame));
 }
 
 /* Return the chain-pointer for FRAME.  In the case of the i386, the


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