mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
* 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.
This commit is contained in:
parent
346ceb11ed
commit
c11c3a98c0
@ -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.
|
||||
|
@ -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 (?)
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user