OSDN Git Service

* MAINTAINERS: Specify the vax-dec-vms5.5 target tupple.
authorcagney <cagney>
Thu, 9 Nov 2000 06:48:48 +0000 (06:48 +0000)
committercagney <cagney>
Thu, 9 Nov 2000 06:48:48 +0000 (06:48 +0000)
* vax-tdep.c: Include "gdbcore.h", "frame.h" and "value.h".
(vax_print_insn): Change ``d'' to a const char pointer.

gdb/ChangeLog
gdb/MAINTAINERS
gdb/vax-tdep.c

index dc8f14f..9963c70 100644 (file)
@@ -1,3 +1,9 @@
+Thu Nov  9 17:16:29 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * MAINTAINERS: Specify the vax-dec-vms5.5 target tupple.
+       * vax-tdep.c: Include "gdbcore.h", "frame.h" and "value.h".
+       (vax_print_insn): Change ``d'' to a const char pointer.
+
 2000-11-08  Michael Snyder  <msnyder@cleaver.cygnus.com>
 
        * gdbarch.sh: Spelling correction: registrary -> registry.
index cc4715a..e589db1 100644 (file)
@@ -92,7 +92,7 @@ maintainer works with the native maintainer when resolving API issues.
 
        tic80           maintenance only (tic80-coff)
        v850            maintenance only (v850-elf)
-       vax             maintenance only (?)
+       vax             maintenance only (vax-dec-vms5.5)
        w65             maintenance only (?)
        z8k             maintenance only (?)
 
index c263ed2..ca54efe 100644 (file)
@@ -21,6 +21,9 @@
 #include "defs.h"
 #include "symtab.h"
 #include "opcode/vax.h"
+#include "gdbcore.h"
+#include "frame.h"
+#include "value.h"
 
 /* Vax instructions are never longer than this.  */
 #define MAXLEN 62
@@ -80,7 +83,7 @@ vax_print_insn (CORE_ADDR memaddr, disassemble_info *info)
   unsigned char buffer[MAXLEN];
   register int i;
   register unsigned char *p;
-  register char *d;
+  const char *d;
 
   int status = (*info->read_memory_func) (memaddr, buffer, MAXLEN, info);
   if (status != 0)