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] linux-mips-low.c: Fix type of mips_add_watchpoint parameter


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

commit eb3e3c67e5f922e8f2c665e1687a71f08dbe37a8
Author: Simon Marchi <simon.marchi@polymtl.ca>
Date:   Tue Nov 3 13:33:14 2015 -0500

    linux-mips-low.c: Fix type of mips_add_watchpoint parameter
    
    Fixes
    
    /home/simark/src/binutils-gdb/gdb/gdbserver/linux-mips-low.c: In function â??void mips_add_watchpoint(arch_process_info*, CORE_ADDR, int, int)â??:
    /home/simark/src/binutils-gdb/gdb/gdbserver/linux-mips-low.c:368:19: error: invalid conversion from â??intâ?? to â??target_hw_bp_typeâ?? [-fpermissive]
       new_watch->type = watch_type;
                       ^
    
    gdb/gdbserver/ChangeLog:
    
    	* linux-mips-low.c (mips_linux_new_thread): Change type of
    	watch_type to enum target_hw_bp_type.

Diff:
---
 gdb/gdbserver/ChangeLog        | 5 +++++
 gdb/gdbserver/linux-mips-low.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index 8fe643c..2ebf27f 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,5 +1,10 @@
 2015-11-03  Simon Marchi  <simon.marchi@polymtl.ca>
 
+	* linux-mips-low.c (mips_linux_new_thread): Change type of
+	watch_type to enum target_hw_bp_type.
+
+2015-11-03  Simon Marchi  <simon.marchi@polymtl.ca>
+
 		* linux-arm-low.c (raw_bkpt_type_to_arm_hwbp_type):
 		Change return type to arm_hwbp_type.
 
diff --git a/gdb/gdbserver/linux-mips-low.c b/gdb/gdbserver/linux-mips-low.c
index 86f7962..2cfa7c2 100644
--- a/gdb/gdbserver/linux-mips-low.c
+++ b/gdb/gdbserver/linux-mips-low.c
@@ -356,8 +356,8 @@ mips_linux_new_thread (struct lwp_info *lwp)
 /* Create a new mips_watchpoint and add it to the list.  */
 
 static void
-mips_add_watchpoint (struct arch_process_info *private, CORE_ADDR addr,
-		     int len, int watch_type)
+mips_add_watchpoint (struct arch_process_info *private, CORE_ADDR addr, int len,
+		     enum target_hw_bp_type watch_type)
 {
   struct mips_watchpoint *new_watch;
   struct mips_watchpoint **pw;


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