Further cleanup for release.
authorJohn Gilmore <gnu@cygnus>
Fri, 22 Nov 1991 22:49:08 +0000 (22:49 +0000)
committerJohn Gilmore <gnu@cygnus>
Fri, 22 Nov 1991 22:49:08 +0000 (22:49 +0000)
gdb/ChangeLog
gdb/configure.in
gdb/rs6k-opcode.h

index d3878ad..07cef10 100644 (file)
@@ -3,6 +3,7 @@ Fri Nov 22 08:27:40 1991  John Gilmore  (gnu at cygnus.com)
        * buildsym.c, coredep.c, mem-break.c, xcoffread.c:  Put <stdio.h>
        first, before defs.h.
        * config/mh-i386sco: Override compiler to gcc, print warning.
+       * configure.in:  Handle i386-none-aout rather than i386-aout-none.
        * infptrace.c, language.h, utils.c:  Lint.
        * m2-exp.y:  #undef MAX and MIN in case system includes set them.
        * xm-tahoe.h:  Set HOST_BYTE_ORDER.  Include system versions of
index 6656c19..22af886 100644 (file)
@@ -238,13 +238,13 @@ i386)
        sco)    gdb_target=i386sco ;;
        sun)    gdb_target=sun386 ;;
        sequent)        gdb_target=symmetry ;;
-       coff)   gdb_target=i386v ;;
-       aout)   gdb_target=i386aout ;;
        *)
                case "${target_os}" in
                sysv)   gdb_target=i386v ;;
                sysv32) gdb_target=i386v32 ;;
                mach)   gdb_target=i386mach ;;
+               coff)   gdb_target=i386v ;;
+               aout)   gdb_target=i386aout ;;
                esac
        esac
        ;;
index 6601d9e..14bf8e1 100755 (executable)
@@ -54,7 +54,7 @@ struct rs6000_insn {
 operator      ext     format  opcode   opcode   operand format
 -------            -------   ------  -------  ------   ---------------   */
 
-OPCODE rs6k_ops [] = {
+struct rs6000_insn rs6k_ops [] = {
 
 {"ti",         0,      "d",    3,      -1,     {TO,RA,SI,0}    },
 {"muli",       0,      "d",    7,      -1,     {RT,RA,SI,0}    },
@@ -233,4 +233,4 @@ OPCODE rs6k_ops [] = {
 {"mtfsf",      ".",    "xfl",  63,     711,    {FLM,FRB,0}     },
 };
 
-#define        NOPCODES        (sizeof (rs6k_ops) / sizeof (OPCODE))
+#define        NOPCODES        (sizeof (rs6k_ops) / sizeof (struct rs6000_insn))