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] gdb: Fix ARI warnings in or1k-tdep.c


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

commit 9664701462aec634d304923df8dc9c52c5a92caf
Author: Stafford Horne <shorne@gmail.com>
Date:   Thu Dec 14 00:00:51 2017 +0900

    gdb: Fix ARI warnings in or1k-tdep.c
    
    Fix a few issues not using the gettext _() wrapper and issues where
    we are using %p directly instead of the dedicated host/target functions.
    
    gdb/ChangeLog:
    
    yyyy-mm-dd  Stafford Horne  <shorne@gmail.com>
    
    	* or1k-tdep.c (or1k_analyse_inst): Use _() wrapper for message
    	strings.
    	(or1k_unwind_pc): Use paddress() instead of %p.
    	(or1k_unwind_sp): Likewise.
    	(or1k_frame_cache): Use host_address_to_string()/paddress()
    	instead of %p and use _() wrapper for message strings.

Diff:
---
 gdb/ChangeLog   |  9 +++++++++
 gdb/or1k-tdep.c | 28 ++++++++++++++--------------
 2 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 906b5fc..835b688 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,12 @@
+2017-12-13  Stafford Horne  <shorne@gmail.com>
+
+	* or1k-tdep.c (or1k_analyse_inst): Use _() wrapper for message
+	strings.
+	(or1k_unwind_pc): Use paddress() instead of %p.
+	(or1k_unwind_sp): Likewise.
+	(or1k_frame_cache): Use host_address_to_string()/paddress()
+	instead of %p and use _() wrapper for message strings.
+
 2017-12-13  Simon Marchi  <simon.marchi@ericsson.com>
 
 	* contrib/ari/gdb_ari.sh: Fix typo in help.
diff --git a/gdb/or1k-tdep.c b/gdb/or1k-tdep.c
index 54b365e..06ee53e 100644
--- a/gdb/or1k-tdep.c
+++ b/gdb/or1k-tdep.c
@@ -132,7 +132,7 @@ or1k_analyse_inst (uint32_t inst, const char *format, ...)
 
 	  /* Check we got something, and if so skip on.  */
 	  if (start_ptr == end_ptr)
-	    error ("bitstring \"%s\" at offset %d has no length field.\n",
+	    error (_("bitstring \"%s\" at offset %d has no length field."),
 			format, i);
 
 	  i += end_ptr - start_ptr;
@@ -141,7 +141,7 @@ or1k_analyse_inst (uint32_t inst, const char *format, ...)
 	     still give a fatal error, because these are fixed strings that
 	     just should not be wrong.  */
 	  if ('b' != format[i++])
-	    error ("bitstring \"%s\" at offset %d has no terminating 'b'.\n",
+	    error (_("bitstring \"%s\" at offset %d has no terminating 'b'."),
 			format, i);
 
 	  /* Break out the field.  There is a special case with a bit width
@@ -158,7 +158,7 @@ or1k_analyse_inst (uint32_t inst, const char *format, ...)
 	  break;
 
 	default:
-	  error ("invalid character in bitstring \"%s\" at offset %d.\n",
+	  error (_("invalid character in bitstring \"%s\" at offset %d."),
 		      format, i);
 	  break;
 	}
@@ -541,8 +541,8 @@ or1k_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
   pc = frame_unwind_register_unsigned (next_frame, OR1K_NPC_REGNUM);
 
   if (or1k_debug)
-    fprintf_unfiltered (gdb_stdlog, "or1k_unwind_pc, pc=0x%p\n",
-			(void *) pc);
+    fprintf_unfiltered (gdb_stdlog, "or1k_unwind_pc, pc=%s\n",
+			paddress (gdbarch, pc));
 
   return pc;
 }
@@ -561,8 +561,8 @@ or1k_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
   sp = frame_unwind_register_unsigned (next_frame, OR1K_SP_REGNUM);
 
   if (or1k_debug)
-    fprintf_unfiltered (gdb_stdlog, "or1k_unwind_sp, sp=0x%p\n",
-			(void *) sp);
+    fprintf_unfiltered (gdb_stdlog, "or1k_unwind_sp, sp=%s\n",
+			paddress (gdbarch, sp));
 
   return sp;
 }
@@ -882,8 +882,8 @@ or1k_frame_cache (struct frame_info *this_frame, void **prologue_cache)
 
   if (or1k_debug)
     fprintf_unfiltered (gdb_stdlog,
-			"or1k_frame_cache, prologue_cache = 0x%p\n",
-			*prologue_cache);
+			"or1k_frame_cache, prologue_cache = %s\n",
+			host_address_to_string (*prologue_cache));
 
   /* Nothing to do if we already have this info.  */
   if (NULL != *prologue_cache)
@@ -942,7 +942,7 @@ or1k_frame_cache (struct frame_info *this_frame, void **prologue_cache)
      have executed the code.  Check we have a sane prologue size, and if
      zero we are frameless and can give up here.  */
   if (end_addr < start_addr)
-    error ("end addr 0x%08x is less than start addr 0x%08x\n",
+    error (_("end addr 0x%08x is less than start addr 0x%08x"),
 		(unsigned int) end_addr, (unsigned int) start_addr);
 
   if (end_addr == start_addr)
@@ -1068,10 +1068,10 @@ or1k_frame_cache (struct frame_info *this_frame, void **prologue_cache)
 
   if (or1k_debug)
     {
-      fprintf_unfiltered (gdb_stdlog, "  this_sp_for_id = 0x%p\n",
-			  (void *) this_sp_for_id);
-      fprintf_unfiltered (gdb_stdlog, "  start_addr     = 0x%p\n",
-			  (void *) start_addr);
+      fprintf_unfiltered (gdb_stdlog, "  this_sp_for_id = %s\n",
+			  paddress (gdbarch, this_sp_for_id));
+      fprintf_unfiltered (gdb_stdlog, "  start_addr     = %s\n",
+			  paddress (gdbarch, start_addr));
     }
 
   return info;


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