This is the mail archive of the gdb-cvs@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]

[binutils-gdb] i386: Fix type of gdbarch_tdep::register_reggroup_p


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=c5bcd27856f388ae4935b525b1016e812803ddf5

commit c5bcd27856f388ae4935b525b1016e812803ddf5
Author: Simon Marchi <simon.marchi@ericsson.com>
Date:   Fri Oct 9 10:12:22 2015 -0400

    i386: Fix type of gdbarch_tdep::register_reggroup_p
    
    gdb/ChangeLog:
    
    	* i386-tdep.h (struct gdbarch_tdep): Change type of
    	register_reggroup_p to gdbarch_register_reggroup_p_ftype.

Diff:
---
 gdb/ChangeLog   | 5 +++++
 gdb/i386-tdep.h | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 2a70bc1..fe97229 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2015-10-09  Simon Marchi  <simon.marchi@ericsson.com>
 
+	* i386-tdep.h (struct gdbarch_tdep): Change type of
+	register_reggroup_p to gdbarch_register_reggroup_p_ftype.
+
+2015-10-09  Simon Marchi  <simon.marchi@ericsson.com>
+
 	* cris-tdep.c (struct instruction_environment): Change type of
 	byte_order to enum bfd_endian.
 
diff --git a/gdb/i386-tdep.h b/gdb/i386-tdep.h
index 7880f6c..95288ba 100644
--- a/gdb/i386-tdep.h
+++ b/gdb/i386-tdep.h
@@ -193,7 +193,7 @@ struct gdbarch_tdep
   const struct target_desc *tdesc;
 
   /* Register group function.  */
-  const void *register_reggroup_p;
+  gdbarch_register_reggroup_p_ftype *register_reggroup_p;
 
   /* Offset of saved PC in jmp_buf.  */
   int jb_pc_offset;


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