* a29k-dis.c: Replace CONST with const.
authorAlan Modra <amodra@gmail.com>
Sat, 8 Jun 2002 07:29:27 +0000 (07:29 +0000)
committerAlan Modra <amodra@gmail.com>
Sat, 8 Jun 2002 07:29:27 +0000 (07:29 +0000)
* h8300-dis.c: Likewise.
* m68k-dis.c: Likewise.
* or32-dis.c: Likewise.
* sparc-dis.c: Likewise.

opcodes/ChangeLog
opcodes/a29k-dis.c
opcodes/h8300-dis.c
opcodes/m68k-dis.c
opcodes/or32-dis.c
opcodes/sparc-dis.c

index ce668c27b734b56c1c0f9767bc8d9ebd59889299..542313e9445f663090f5fd49cbf9928ce32d6eb2 100644 (file)
@@ -1,3 +1,11 @@
+2002-06-08  Alan Modra  <amodra@bigpond.net.au>
+
+       * a29k-dis.c: Replace CONST with const.
+       * h8300-dis.c: Likewise.
+       * m68k-dis.c: Likewise.
+       * or32-dis.c: Likewise.
+       * sparc-dis.c: Likewise.
+
 2002-06-04  Jason Thorpe  <thorpej@wasabisystems.com>
 
        * configure.in: Add "sh5*-*" to list of targets which include
@@ -301,7 +309,7 @@ Mon Mar 18 21:10:43 CET 2002  Jan Hubicka  <jh@suse.cz>
 
 2002-02-20  Tom Rix  <trix@redhat.com>
 
-       * ppc-opc.c (powerpc_operands): Add WS feild.  Use for tlbre, tlbwe.
+       * ppc-opc.c (powerpc_operands): Add WS field.  Use for tlbre, tlbwe.
 
 2002-02-19  Martin Schwidefsky  <schwidefsky@de.ibm.com>
 
index 0e937ba0eab4d3189887d76f8c2f34a49be35a77..a3090c3e21b0d0e10a539dc6cadcbe80b15a14a4 100644 (file)
@@ -1,5 +1,5 @@
 /* Instruction printing code for the AMD 29000
-   Copyright 1990, 1993, 1994, 1995, 1998, 2000, 2001
+   Copyright 1990, 1993, 1994, 1995, 1998, 2000, 2001, 2002
    Free Software Foundation, Inc.
    Contributed by Cygnus Support.  Written by Jim Kingdon.
 
@@ -153,7 +153,7 @@ print_insn (memaddr, info)
 
   find_byte_func_type find_byte_func = (find_byte_func_type)info->private_data;
 
-  struct a29k_opcode CONST * opcode;
+  struct a29k_opcode const * opcode;
 
   {
     int status =
index c521c773fce2fbbefaa83a62dbad859570a62df1..d14fda9858b102b2905be98325ced061bd3339d7 100644 (file)
@@ -1,5 +1,6 @@
 /* Disassemble h8300 instructions.
-   Copyright 1993, 1994, 1996, 1998, 2000, 2001 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1996, 1998, 2000, 2001, 2002
+   Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -69,17 +70,17 @@ bfd_h8_disassemble (addr, info, mode)
      int mode;
 {
   /* Find the first entry in the table for this opcode.  */
-  static CONST char *regnames[] =
+  static const char *regnames[] =
     {
       "r0h", "r1h", "r2h", "r3h", "r4h", "r5h", "r6h", "r7h",
       "r0l", "r1l", "r2l", "r3l", "r4l", "r5l", "r6l", "r7l"
     };
-  static CONST char *wregnames[] =
+  static const char *wregnames[] =
     {
       "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
       "e0", "e1", "e2", "e3", "e4", "e5", "e6", "e7"
     };
-  static CONST char *lregnames[] =
+  static const char *lregnames[] =
     {
       "er0", "er1", "er2", "er3", "er4", "er5", "er6", "er7",
       "er0", "er1", "er2", "er3", "er4", "er5", "er6", "er7"
@@ -92,7 +93,7 @@ bfd_h8_disassemble (addr, info, mode)
   int plen = 0;
   static boolean init = 0;
   struct h8_opcode *q;
-  char CONST **pregnames = mode != 0 ? lregnames : wregnames;
+  char const **pregnames = mode != 0 ? lregnames : wregnames;
   int status;
   int l;
   unsigned char data[20];
index d575088e2a3e9337fc7bf8031b55733b3265c50a..12c0b9460ef5ba43a7565973c9b7033956bb3b20 100644 (file)
@@ -46,7 +46,7 @@ static int
 print_insn_arg PARAMS ((const char *, unsigned char *, unsigned char *,
                        bfd_vma, disassemble_info *));
 
-CONST char * CONST fpcr_names[] = {
+const char * const fpcr_names[] = {
     "", "%fpiar", "%fpsr", "%fpiar/%fpsr", "%fpcr",
     "%fpiar/%fpcr", "%fpsr/%fpcr", "%fpiar/%fpsr/%fpcr"
 };
@@ -478,7 +478,7 @@ print_insn_arg (d, buffer, p0, addr, info)
   register int place = d[1];
   register unsigned char *p = p0;
   int regno;
-  register CONST char *regname;
+  register const char *regname;
   register unsigned char *p1;
   double flval;
   int flt_p;
index 8876a3036668e1025327da5bccc33abd07439452..d5f467944d23c1cf7fbd7907e359c702da6c4ca3 100644 (file)
@@ -261,7 +261,7 @@ print_insn (memaddr, info)
   /* The four bytes of the instruction.  */
   unsigned long insn;
   find_byte_func_type find_byte_func = (find_byte_func_type)info->private_data;
-  struct or32_opcode CONST * opcode;
+  struct or32_opcode const * opcode;
 
   {
     int status =
index 4c59398d54dd3b59a25a4c77ab4aa6f5f7eeea70..47ebb313744842a62aaf005a2c6dc5d88013ef0f 100644 (file)
@@ -1,6 +1,6 @@
 /* Print SPARC instructions.
    Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-   2000 Free Software Foundation, Inc.
+   2000, 2002 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -188,7 +188,7 @@ is_delayed_branch (insn)
 
   for (op = opcode_hash_table[HASH_INSN (insn)]; op; op = op->next)
     {
-      CONST struct sparc_opcode *opcode = op->opcode;
+      const struct sparc_opcode *opcode = op->opcode;
       if ((opcode->match & insn) == opcode->match
          && (opcode->lose & insn) == 0)
        return (opcode->flags & F_DELAYED);
@@ -272,7 +272,7 @@ print_insn_sparc (memaddr, info)
 
   for (op = opcode_hash_table[HASH_INSN (insn)]; op; op = op->next)
     {
-      CONST struct sparc_opcode *opcode = op->opcode;
+      const struct sparc_opcode *opcode = op->opcode;
 
       /* If the insn isn't supported by the current architecture, skip it.  */
       if (! (opcode->architecture & current_arch_mask))
@@ -312,7 +312,7 @@ print_insn_sparc (memaddr, info)
          (*info->fprintf_func) (stream, opcode->name);
 
          {
-           register CONST char *s;
+           register const char *s;
 
            if (opcode->args[0] != ',')
              (*info->fprintf_func) (stream, " ");
This page took 0.031257 seconds and 4 git commands to generate.