From: Alan Modra Date: Mon, 16 Dec 2002 09:54:12 +0000 (+0000) Subject: * ns32k-dis.c (print_insn_ns32k): Constify "d", remove register X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e3c991260959c8fa5f30bbb278545a696a071c2c;p=deliverable%2Fbinutils-gdb.git * ns32k-dis.c (print_insn_ns32k): Constify "d", remove register keyword. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 4d206b5256..5befb2dd6a 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2002-12-16 Alan Modra + + * ns32k-dis.c (print_insn_ns32k): Constify "d", remove register + keyword. + 2002-12-13 Alan Modra * h8500-opc.h (h8500_table): Add missing initializers to quiet diff --git a/opcodes/ns32k-dis.c b/opcodes/ns32k-dis.c index bc51dafeb6..fe7144ae50 100644 --- a/opcodes/ns32k-dis.c +++ b/opcodes/ns32k-dis.c @@ -405,8 +405,8 @@ print_insn_ns32k (memaddr, info) bfd_vma memaddr; disassemble_info *info; { - register unsigned int i; - register char *d; + unsigned int i; + const char *d; unsigned short first_word; int ioffset; /* bits into instruction */ int aoffset; /* bits into arguments */