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]

[COMMIT] More gdb_byte changes to s390-tdep.c


Hello,

this fixes some more gdb_byte fallout in s390-tdep.c.
Tested on s390-ibm-linux and s390x-ibm-linux, committed to mainline.

Bye,
Ulrich


ChangeLog:

	* s390-tdep.c (s390_frame_prev_register): Change type of last
	argument to 'gdb_byte *'.
	(s390_stub_frame_prev_register): Likewise.
	(s390_sigtramp_frame_prev_register): Likewise.

Index: gdb/s390-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/s390-tdep.c,v
retrieving revision 1.145
diff -c -p -r1.145 s390-tdep.c
*** gdb/s390-tdep.c	16 May 2005 12:38:09 -0000	1.145
--- gdb/s390-tdep.c	24 May 2005 15:53:16 -0000
*************** s390_frame_prev_register (struct frame_i
*** 1945,1951 ****
  			  void **this_prologue_cache,
  			  int regnum, int *optimizedp,
  			  enum lval_type *lvalp, CORE_ADDR *addrp,
! 			  int *realnump, void *bufferp)
  {
    struct s390_unwind_cache *info
      = s390_frame_unwind_cache (next_frame, this_prologue_cache);
--- 1945,1951 ----
  			  void **this_prologue_cache,
  			  int regnum, int *optimizedp,
  			  enum lval_type *lvalp, CORE_ADDR *addrp,
! 			  int *realnump, gdb_byte *bufferp)
  {
    struct s390_unwind_cache *info
      = s390_frame_unwind_cache (next_frame, this_prologue_cache);
*************** s390_stub_frame_prev_register (struct fr
*** 2017,2023 ****
  			       void **this_prologue_cache,
  			       int regnum, int *optimizedp,
  			       enum lval_type *lvalp, CORE_ADDR *addrp,
! 			       int *realnump, void *bufferp)
  {
    struct s390_stub_unwind_cache *info
      = s390_stub_frame_unwind_cache (next_frame, this_prologue_cache);
--- 2017,2023 ----
  			       void **this_prologue_cache,
  			       int regnum, int *optimizedp,
  			       enum lval_type *lvalp, CORE_ADDR *addrp,
! 			       int *realnump, gdb_byte *bufferp)
  {
    struct s390_stub_unwind_cache *info
      = s390_stub_frame_unwind_cache (next_frame, this_prologue_cache);
*************** s390_sigtramp_frame_prev_register (struc
*** 2160,2166 ****
  				   void **this_prologue_cache,
  				   int regnum, int *optimizedp,
  				   enum lval_type *lvalp, CORE_ADDR *addrp,
! 				   int *realnump, void *bufferp)
  {
    struct s390_sigtramp_unwind_cache *info
      = s390_sigtramp_frame_unwind_cache (next_frame, this_prologue_cache);
--- 2160,2166 ----
  				   void **this_prologue_cache,
  				   int regnum, int *optimizedp,
  				   enum lval_type *lvalp, CORE_ADDR *addrp,
! 				   int *realnump, gdb_byte *bufferp)
  {
    struct s390_sigtramp_unwind_cache *info
      = s390_sigtramp_frame_unwind_cache (next_frame, this_prologue_cache);
-- 
  Dr. Ulrich Weigand
  Linux on zSeries Development
  Ulrich.Weigand@de.ibm.com


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