* ns32k-dis.c (print_insn_ns32k): Constify "d", remove register
authorAlan Modra <amodra@gmail.com>
Mon, 16 Dec 2002 09:54:12 +0000 (09:54 +0000)
committerAlan Modra <amodra@gmail.com>
Mon, 16 Dec 2002 09:54:12 +0000 (09:54 +0000)
keyword.

opcodes/ChangeLog
opcodes/ns32k-dis.c

index 4d206b52568642e4f7a25e0b2b9b2ae2092e1d54..5befb2dd6a3148640facb1ebc6d443673415b13c 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-16  Alan Modra  <amodra@bigpond.net.au>
+
+       * ns32k-dis.c (print_insn_ns32k): Constify "d", remove register
+       keyword.
+
 2002-12-13  Alan Modra  <amodra@bigpond.net.au>
 
        * h8500-opc.h (h8500_table): Add missing initializers to quiet
index bc51dafeb6445a8eedd25e329c6d76ebcadc6c0f..fe7144ae5054840857025e526bcb5d4a6e9ef82d 100644 (file)
@@ -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 */
This page took 0.02769 seconds and 4 git commands to generate.