Fix -Werror probs for ns32k.
authorAndrew Cagney <cagney@redhat.com>
Wed, 28 Mar 2001 21:26:07 +0000 (21:26 +0000)
committerAndrew Cagney <cagney@redhat.com>
Wed, 28 Mar 2001 21:26:07 +0000 (21:26 +0000)
gdb/ChangeLog
gdb/MAINTAINERS
gdb/config/ns32k/tm-umax.h
gdb/ns32k-tdep.c

index bfd759473683cc3515454f7d95b93f84481448c9..88c0604e2ba90424e27e970d47859df14a77357d 100644 (file)
@@ -1,3 +1,16 @@
+2001-03-28  Andrew Cagney  <ac131313@redhat.com>
+
+       * MAINTAINERS: Change ns32k target to ,-Werror.
+
+       * ns32k-tdep.c: Include "gdbcore.h"
+       (flip_bytes): Change first argument to void*. Add forward
+       declaration.
+       (sign_extend): Add declaration.
+       (merlin_frame_num_args): Add final else clause to if-else chain.
+       (umax_frame_num_args): Ditto.
+       * config/ns32k/tm-umax.h (ns32k_localcount): Declare.
+       (flip_bytes): Ditto.
+
 2001-03-28  Mark Kettenis  <kettenis@gnu.org>
 
        * i386-linux-tdep.c (FRAMELESS_SIGNAL): Moved here from
index d7aef74bded0977749ced028fe48143b4e12f5d7..3f912047a07dfd51e0f7c04c3459b3f5be4e04d8 100644 (file)
@@ -114,7 +114,7 @@ maintainer works with the native maintainer when resolving API issues.
        mn10300         --target=mn10300-elf ,-Werror
                        Andrew Cagney           cagney@cygnus.com
 
-       ns32k           --target=ns32k-netbsd ,Werror
+       ns32k           --target=ns32k-netbsd ,-Werror
                        Maintenance only
 
        pa              (--target=hppa1.1-hp-proelf broken)
index a004123e883b1544a394910c826a2eea2dd887f9..5f9d2b985eafe4e571b5ef97885b3c7c0ead73e2 100644 (file)
@@ -241,6 +241,8 @@ extern int umax_frame_num_args (struct frame_info *fi);
    ways in the stack frame.  sp is even more special:
    the address we return for it IS the sp for the next frame.  */
 
+extern int ns32k_localcount (CORE_ADDR enter_pc);
+
 #define FRAME_FIND_SAVED_REGS(frame_info, frame_saved_regs)    \
 {                                                              \
   register int regmask, regnum;                                \
@@ -322,6 +324,8 @@ extern int umax_frame_num_args (struct frame_info *fi);
 /* Insert the specified number of args and function address
    into a call sequence of the above form stored at DUMMYNAME.  */
 
+void flip_bytes (void *ptr, int count);
+
 #define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, gcc_p)                   \
 {                                                              \
        int     flipped;                                        \
index c4cab6215510392e9c105f2a4cd47b46f9dbe292..57efe0771bf515631e941bb0f43279079fbd3a1f 100644 (file)
@@ -21,6 +21,9 @@
 
 #include "defs.h"
 #include "frame.h"
+#include "gdbcore.h"
+
+static int sign_extend (int value, int bits);
 
 void
 _initialize_ns32k_tdep (void)
@@ -90,6 +93,8 @@ merlin_frame_num_args (struct frame_info *fi)
        width = 2;
       else if (insn == 0x57f)  /* adjspd */
        width = 4;
+      else
+       internal_error (__FILE__, __LINE__, "bad else");
       numargs = read_memory_integer (pc + 2, width);
       if (width > 1)
        flip_bytes (&numargs, width);
@@ -135,6 +140,8 @@ umax_frame_num_args (struct frame_info *fi)
            width = 2;
          else if (insn == 0x57f)       /* adjspd */
            width = 4;
+         else
+           internal_error (__FILE__, __LINE__, "bad else");
          numargs = read_memory_integer (pc + 2, width);
          if (width > 1)
            flip_bytes (&numargs, width);
@@ -145,6 +152,7 @@ umax_frame_num_args (struct frame_info *fi)
 }
 
 
+static int
 sign_extend (int value, int bits)
 {
   value = value & ((1 << bits) - 1);
@@ -154,9 +162,10 @@ sign_extend (int value, int bits)
 }
 
 void
-flip_bytes (char *ptr, int count)
+flip_bytes (void *p, int count)
 {
   char tmp;
+  char *ptr = 0;
 
   while (count > 0)
     {
This page took 0.029963 seconds and 4 git commands to generate.