Further cleanup for release.

This commit is contained in:
John Gilmore 1991-11-22 22:49:08 +00:00
parent 2fd5584884
commit 2b61280ae6
3 changed files with 5 additions and 4 deletions

View 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

View 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
;;

View File

@ -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))