* am29k-pinsn.c (print_insn): Minor nits with const.
authorStu Grossman <grossman@cygnus>
Fri, 19 Feb 1993 06:48:52 +0000 (06:48 +0000)
committerStu Grossman <grossman@cygnus>
Fri, 19 Feb 1993 06:48:52 +0000 (06:48 +0000)
* am29k-tdep.c:  More minor nits with arg types for
supply_register, NULL vs. 0, read_register_gen, & reginv_com.

gdb/ChangeLog
gdb/am29k-pinsn.c
gdb/am29k-tdep.c

index f426654585641c455e4a0eb6a7c7c5774426a37a..296d85253e0ddbecb2fc46cc4a541c069aa276c6 100644 (file)
@@ -1,3 +1,9 @@
+Thu Feb 18 22:44:40 1993  Stu Grossman  (grossman@cygnus.com)
+
+       * am29k-pinsn.c (print_insn):  Minor nits with const.
+       * am29k-tdep.c:  More minor nits with arg types for
+       supply_register, NULL vs. 0, read_register_gen, & reginv_com.
+
 Thu Feb 18 16:13:28 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
 
        * nm-hp300bsd.h (PTRACE_ARG3_TYPE): FSF's hp300's have int* not
index 337bf90c34bcc630e1fadc5006b94ea9045b7d31..36b73449ef21601cd5531a017c0be835121b23b4 100644 (file)
@@ -127,7 +127,7 @@ print_insn (memaddr, stream)
   /* The four bytes of the instruction.  */
   unsigned char insn24, insn16, insn8, insn0;
 
-  struct a29k_opcode *opcode;
+  struct a29k_opcode const * opcode;
 
   read_memory (memaddr, &insn[0], 4);
 
index 13aca9a2cb252566684934b9757017f8227e8950..b81ab6d431c03940f8419be666ffb272e28a322d 100644 (file)
@@ -518,7 +518,7 @@ read_register_stack (memaddr, myaddr, actual_mem_addr, lval)
       int regnum = (memaddr - rsp) / 4 + LR0_REGNUM;
       if (myaddr != NULL)
        *(int*)myaddr = val;            /* Provide bogusness */
-      supply_register(regnum,&val);    /* More bogusness */
+      supply_register(regnum, (char *)&val);   /* More bogusness */
       if (lval != NULL)
        *lval = lval_register;
       if (actual_mem_addr != NULL)
@@ -578,7 +578,7 @@ write_register_stack (memaddr, myaddr, actual_mem_addr)
     {
       /* It's in a register, but off the end of the stack.  */
       if (actual_mem_addr != NULL)
-       *actual_mem_addr = NULL
+       *actual_mem_addr = 0
     }
   else if (memaddr < rfb)
     {
@@ -589,7 +589,7 @@ write_register_stack (memaddr, myaddr, actual_mem_addr)
       if (myaddr != NULL)
        write_register (regnum, *(long *)myaddr);
       if (actual_mem_addr != NULL)
-       *actual_mem_addr = NULL;
+       *actual_mem_addr = 0;
     }
   else
     {
@@ -769,8 +769,8 @@ push_dummy_frame ()
       for (i = 0; i < num_bytes; i += 4)
        {
          /* Note:  word is in target byte order.  */
-         read_register_gen (LR0_REGNUM + i / 4, &word);
-         write_memory (rfb - num_bytes + i, &word, 4);
+         read_register_gen (LR0_REGNUM + i / 4, (char *) &word);
+         write_memory (rfb - num_bytes + i, (char *) &word, 4);
        }
     }
 
@@ -797,6 +797,7 @@ push_dummy_frame ()
   write_register (lrnum, read_register (NPC_REGNUM));
 }
 
+static void
 reginv_com (args, fromtty)
      char       *args;
      int        fromtty;