]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: Fix function parameter alignments in or1k-tdep.c.
authorStafford Horne <shorne@gmail.com>
Sat, 16 Dec 2017 22:20:51 +0000 (07:20 +0900)
committerStafford Horne <shorne@gmail.com>
Sat, 16 Dec 2017 22:20:51 +0000 (07:20 +0900)
As suggested by Joel Brobecker <brobecker@adacore.com> and as per fsf
coding standards.  Also fix a few more issues with directly printing
pointers.

gdb/ChangeLog:

* gdb/or1k-tdep.c (show_or1k_debug): Fix function parameter alignment.
(or1k_analyse_inst): Likewise.
(or1k_single_step_through_delay): Likewise.
(or1k_frame_cache): Fix parameter alignment and use paddress()
instead of %x.

gdb/ChangeLog
gdb/or1k-tdep.c

index 20da9893306fc02e9c6c4fa24a81fac78ca30d41..f7955264ae36b81633b0938c20770aabc3ef3384 100644 (file)
@@ -1,3 +1,11 @@
+2017-12-17  Stafford Horne  <shorne@gmail.com>
+
+       * gdb/or1k-tdep.c (show_or1k_debug): Fix function parameter alignment.
+       (or1k_analyse_inst): Likewise.
+       (or1k_single_step_through_delay): Likewise.
+       (or1k_frame_cache): Fix parameter alignment and use paddress()
+       instead of %x.
+
 2017-12-17  Stafford Horne  <shorne@gmail.com>
 
        * NEWS (Changes since GDB 8.0): Mention new or1k target and new
index 06ee53e83c92431c1c58b5b8891d0c697e1d7243..a8de029997d53f45ba951c759d9fe4de6a980e78 100644 (file)
@@ -55,7 +55,7 @@ static int or1k_debug = 0;
 
 static void
 show_or1k_debug (struct ui_file *file, int from_tty,
-                 struct cmd_list_element *c, const char *value)
+                struct cmd_list_element *c, const char *value)
 {
   fprintf_filtered (file, _("OpenRISC debugging is %s.\n"), value);
 }
@@ -133,7 +133,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."),
-                       format, i);
+                  format, i);
 
          i += end_ptr - start_ptr;
 
@@ -142,7 +142,7 @@ or1k_analyse_inst (uint32_t inst, const char *format, ...)
             just should not be wrong.  */
          if ('b' != format[i++])
            error (_("bitstring \"%s\" at offset %d has no terminating 'b'."),
-                       format, i);
+                  format, i);
 
          /* Break out the field.  There is a special case with a bit width
             of 32.  */
@@ -159,7 +159,7 @@ or1k_analyse_inst (uint32_t inst, const char *format, ...)
 
        default:
          error (_("invalid character in bitstring \"%s\" at offset %d."),
-                     format, i);
+                format, i);
          break;
        }
     }
@@ -372,9 +372,9 @@ or1k_single_step_through_delay (struct gdbarch *gdbarch,
     return 0;
 
   insn = cgen_lookup_insn (tdep->gdb_cgen_cpu_desc,
-                           NULL,
-                           or1k_fetch_instruction (gdbarch, ppc),
-                           NULL, 32, &tmp_fields, 0);
+                          NULL,
+                          or1k_fetch_instruction (gdbarch, ppc),
+                          NULL, 32, &tmp_fields, 0);
 
   /* NULL here would mean the last instruction was not understood by cgen.
      This should not usually happen, but if does its not a delay slot.  */
@@ -942,8 +942,8 @@ 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"),
-               (unsigned int) end_addr, (unsigned int) start_addr);
+    error (_("end addr %s is less than start addr %s"),
+          paddress (gdbarch, end_addr), paddress (gdbarch, start_addr));
 
   if (end_addr == start_addr)
     frame_size = 0;