* tm-*.h: Remove READ_DBX_FORMAT, COFF_FORMAT, and
authorJohn Gilmore <gnu@cygnus>
Thu, 7 Nov 1991 13:14:59 +0000 (13:14 +0000)
committerJohn Gilmore <gnu@cygnus>
Thu, 7 Nov 1991 13:14:59 +0000 (13:14 +0000)
READ_MIPS_FORMAT, which have been unused since BFD.  Still
remaining is COFF_NO_LONG_FILE_NAMES.
* tm-sun3.h, tm-altos.h:  Remove detritus accidentally left from
function calling code moved to m68k-tdep.c.

26 files changed:
gdb/ChangeLog
gdb/tm-3b1.h
gdb/tm-altos.h
gdb/tm-altosgas.h
gdb/tm-arm.h
gdb/tm-convex.h
gdb/tm-hp300bsd.h
gdb/tm-hp300hpux.h
gdb/tm-i386v-g.h
gdb/tm-i386v.h
gdb/tm-irix3.h
gdb/tm-isi.h
gdb/tm-merlin.h
gdb/tm-mips.h
gdb/tm-news.h
gdb/tm-np1.h
gdb/tm-pn.h
gdb/tm-pyr.h
gdb/tm-sparc.h
gdb/tm-sun2.h
gdb/tm-sun3.h
gdb/tm-sun386.h
gdb/tm-symmetry.h
gdb/tm-tahoe.h
gdb/tm-umax.h
gdb/tm-vax.h

index 46621f75b08aa8fcc60b4806974261319d15336d..0ffcf092758f07c2bd63b17ffba4bb155c0816a9 100644 (file)
@@ -1,3 +1,11 @@
+Thu Nov  7 04:51:19 1991  John Gilmore  (gnu at cygnus.com)
+
+       * tm-*.h:  Remove READ_DBX_FORMAT, COFF_FORMAT, and
+       READ_MIPS_FORMAT, which have been unused since BFD.  Still
+       remaining is COFF_NO_LONG_FILE_NAMES.
+       * tm-sun3.h, tm-altos.h:  Remove detritus accidentally left from
+       function calling code moved to m68k-tdep.c.
+
 Wed Nov  6 17:21:59 1991  John Gilmore  (gnu at cygnus.com)
 
        * coffread.c:  Eliminate c_nsyms in favor of c_naux.
index 5b49b07fd3b8fd501d99b21d488af9e3511a8e49..4bcf01fcb0f6b69b9cf11197bfa8b9ad2fec9d71 100644 (file)
@@ -1,5 +1,5 @@
 /* Parameters for targeting to a 3b1.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -27,9 +27,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in COFF format.  */
+/* Debugger information will be in COFF format, without long filenames.  */
 
-#define COFF_FORMAT
 #define COFF_NO_LONG_FILE_NAMES
 
 /* Address of end of stack space.  */
index bc0d2f9db157770c22ceaea8b18b18ca12a688d1..7fb094a5fbcff670789d1f4cf5b30b1e8dd66df4 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions to make GDB run on an Altos 3068 (m68k running SVR2)
-   Copyright (C) 1987,1989 Free Software Foundation, Inc.
+   Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -27,9 +27,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #undef NAMES_HAVE_UNDERSCORE
 
-/* Exec files and symbol tables are in COFF format */
+/* COFF files don't have long filenames.  */
 
-#define COFF_FORMAT
 #define COFF_NO_LONG_FILE_NAMES
 
 /* Address of end of stack space.  */
@@ -38,60 +37,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define STACK_END_ADDR (0x1000000)
 
 /* Amount PC must be decremented by after a breakpoint.
-   This is often the number of bytes in BREAKPOINT
-   but not always.
    On the Altos, the kernel resets the pc to the trap instr */
 
 #define DECR_PC_AFTER_BREAK 0
 
-\f
-/* Things needed for making the inferior call functions.  */
-
-/* Push an empty stack frame, to record the current PC, etc.  */
-
-#define PUSH_DUMMY_FRAME \
-{ register CORE_ADDR sp = read_register (SP_REGNUM);                   \
-  register int regnum;                                                 \
-  char raw_buffer[12];                                                 \
-  sp = push_word (sp, read_register (PC_REGNUM));                      \
-  sp = push_word (sp, read_register (FP_REGNUM));                      \
-  write_register (FP_REGNUM, sp);                                      \
-  for (regnum = FP0_REGNUM + 7; regnum >= FP0_REGNUM; regnum--)                \
-    { read_register_bytes (REGISTER_BYTE (regnum), raw_buffer, 12);    \
-      sp = push_bytes (sp, raw_buffer, 12); }                          \
-  for (regnum = FP_REGNUM - 1; regnum >= 0; regnum--)                  \
-    sp = push_word (sp, read_register (regnum));                       \
-  sp = push_word (sp, read_register (PS_REGNUM));                      \
-  write_register (SP_REGNUM, sp);  }
-
-/* Discard from the stack the innermost frame, 
-   restoring all saved registers.  */
-
-#define POP_FRAME  \
-{ register FRAME frame = get_current_frame ();                         \
-  register CORE_ADDR fp;                                               \
-  register int regnum;                                                 \
-  struct frame_saved_regs fsr;                                         \
-  struct frame_info *fi;                                               \
-  char raw_buffer[12];                                                 \
-  fi = get_frame_info (frame);                                         \
-  fp = fi->frame;                                                      \
-  get_frame_saved_regs (fi, &fsr);                                     \
-  for (regnum = FP0_REGNUM + 7; regnum >= FP0_REGNUM; regnum--)                \
-    if (fsr.regs[regnum])                                              \
-      { read_memory (fsr.regs[regnum], raw_buffer, 12);                        \
-        write_register_bytes (REGISTER_BYTE (regnum), raw_buffer, 12); }\
-  for (regnum = FP_REGNUM - 1; regnum >= 0; regnum--)                  \
-    if (fsr.regs[regnum])                                              \
-      write_register (regnum, read_memory_integer (fsr.regs[regnum], 4)); \
-  if (fsr.regs[PS_REGNUM])                                             \
-    write_register (PS_REGNUM, read_memory_integer (fsr.regs[PS_REGNUM], 4)); \
-  write_register (FP_REGNUM, read_memory_integer (fp, 4));             \
-  write_register (PC_REGNUM, read_memory_integer (fp + 4, 4));         \
-  write_register (SP_REGNUM, fp + 8);                                  \
-  flush_cached_frames ();                                              \
-  set_current_frame (create_new_frame (read_register (FP_REGNUM),      \
-                                       read_pc ())); }
-
-\f
 #include "tm-68k.h"
index 14b56526e8e5e585bfae307cb4a96d618ce7a018..c20030c4253170c7e68b5a66119991e2d91223fa 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions to make GDB run on an Altos 3068 using COFF encapsulation.
-   Copyright (C) 1989 Free Software Foundation, Inc.
+   Copyright (C) 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -21,8 +21,4 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #include "m-altos.h"
 
-#undef COFF_FORMAT
-#undef COFF_NO_LONG_FILE_NAMES
 #define NAMES_HAVE_UNDERSCORE
-
-#define READ_DBX_FORMAT
index ad445df05f736fff6cc70fe935bc930f7842b065..ee63d6a53e94c6bc9c0117e8fcab7fb4e3fadfc8 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions to make GDB target for an ARM under RISCiX (4.3bsd).
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -32,10 +32,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */
 
index be981b7aa917d5ad65b994c3786fd51d3ce38762..2424a2f53972498ab8abd948bd6d25b60cbe1b48 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions to make GDB run on Convex Unix (4bsd)
-   Copyright (C) 1989 Free Software Foundation, Inc.
+   Copyright (C) 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -32,10 +32,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* There is come problem with the debugging symbols generated by the
    compiler such that the debugging symbol for the first line of a
    function overlap with the function prologue.  */
index 9a6da61899582b8275dd1c9349fd3aaa9542e692..4edcbd3a80ac565c4fc3874cff970f7c129de6b0 100644 (file)
@@ -35,10 +35,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 #define TARGET_NBPG 4096
 #define TARGET_UPAGES 3
 
index 742149b610da29f736c311e361bf24a3f54cffa4..f1926a148d2eba20e6cf6050a125c35d512c9814 100644 (file)
@@ -1,5 +1,5 @@
 /* Parameters for execution on an HP 9000 model 320, for GDB, the GNU debugger.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -29,10 +29,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Address of end of stack space.  */
 
 #define STACK_END_ADDR 0xFFF00000
index 02344047aa65481d3cb6540dadbc550fac6de970..669284a32b7f572aa54b1b460416ecf5d2a803a7 100644 (file)
@@ -1,5 +1,5 @@
 /* Macro definitions for i386 using the GNU object file format.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -30,6 +30,3 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "tm-i386v.h"
 
 #define NAMES_HAVE_UNDERSCORE
-
-#undef COFF_FORMAT
-#define READ_DBX_FORMAT
index 2f92ac6600587bdefe8a7b7273910132a50e31fa..11c90a497b01e196ca32aae4894a82dab0894762 100644 (file)
@@ -1,5 +1,5 @@
 /* Macro defintions for i386.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -31,18 +31,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define COFF_NO_LONG_FILE_NAMES
 
 /* turn this on when rest of gdb is ready */
-/* #define IEEE_FLOAT */
+#define IEEE_FLOAT
 
 /* Define this if the C compiler puts an underscore at the front
    of external names before giving them to the linker.  */
 
 /* #define NAMES_HAVE_UNDERSCORE */
 
-/* Specify debugger information format.  */
-
-/* #define READ_DBX_FORMAT */
-#define COFF_FORMAT
-
 /* number of traps that happen between exec'ing the shell 
  * to run an inferior, and when we finally get to 
  * the inferior code.  This is 2 on most implementations.
index d353fa5371cb81d69b7394fc1c4b182ff090f8a8..884330260bb1485e5c10b10fddf8ce9c6a4f5de5 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (C) 1990 Free Software Foundation, Inc.
+/* Target machine description for SGI Iris under Irix, for GDB.
+   Copyright 1990, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -26,14 +27,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 /*#define NAMES_HAVE_UNDERSCORE*/
 
-/* Debugger information will be in mips' format */
-
-#define READ_MIPS_FORMAT
-
-/* File format is coff, but with additions */
-
-#define COFF_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */
 
index f214317fdb64e1cce13a3c7117f4a1d7cae51e9c..c235902df7de6b55729e89011b67dd0dd28bd05a 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions to target GDB on an ISI Optimum V (3.05) under 4.3bsd.
-   Copyright (C) 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -27,10 +27,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Address of end of stack space.  */
 
 #define STACK_END_ADDR 0xfffe000
index 2991c2e560de9035699cb5eae188424d27b407d6..3a4ac230e2b86bfa573a5de1ff6a05e726ffab6c 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions to target GDB to a merlin under utek 2.1
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -28,10 +28,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */
 
index f872a044b3bce18e78f5c8d16e6334866edc5532..e47443f36a195e0ae6ec46529653732cd91107ee 100644 (file)
@@ -1,7 +1,7 @@
 /* Definitions to make GDB run on a mips box under 4.3bsd.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
-   Contributed by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin
-   and by Alessandro Forin(af@cs.cmu.edu) at CMU
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
+   Contributed by Per Bothner (bothner@cs.wisc.edu) at U.Wisconsin
+   and by Alessandro Forin (af@cs.cmu.edu) at CMU.
 
 This file is part of GDB.
 
index bf70b7474cc381917de733daf8532a6ba6b5cc98..6ec1fab0c15f63236a0a50c87f2a73fb400f2bcd 100644 (file)
@@ -1,5 +1,5 @@
 /* Parameters for execution on a Sony/NEWS, for GDB, the GNU debugger.
-   Copyright (C) 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -34,9 +34,6 @@ Here is an m-news.h file for gdb.  It supports the 68881 registers.
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Symbols on this machine are in DBX format. */
-#define READ_DBX_FORMAT
-
 /* Use to compute STACK_END_ADDR.  */
 #define TARGET_UPAGES 2
 #define TARGET_NBPG 4096
index 78aebb006acc853dd6157101e8fa2e20cfb7ab60..5fe878989afca1569d261a4cdfdba7e1df86c1f4 100644 (file)
@@ -1,5 +1,5 @@
 /* Parameters for targeting on a Gould NP1, for GDB, the GNU debugger.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -78,9 +78,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
    of external names before giving them to the linker.  */
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-#define READ_DBX_FORMAT
-
 /* Address of blocks in N_LBRAC and N_RBRAC symbols are absolute addresses,
    not relative to start of source address.  */
 #define BLOCK_ADDRESS_ABSOLUTE
index 36565df5a5c67b2c3cb7fc8b526b3e4861167f70..e84cc27be87284c50de6bc543e5fa6c0ecb74463 100644 (file)
@@ -1,5 +1,5 @@
 /* Parameters for targe of a Gould Powernode, for GDB, the GNU debugger.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -79,9 +79,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
    of external names before giving them to the linker.  */
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-#define READ_DBX_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */
 #define FUNCTION_START_OFFSET  4
index dbca0b4474563b50057a823c286f6e71112fe741..750fef2440a249bf347a0e3844ceddaf28b33f6e 100644 (file)
@@ -1,5 +1,5 @@
-/* Definitions to make GDB run on a Pyramidax under OSx 4.0 (4.2bsd).
-   Copyright (C) 1988, 1989 Free Software Foundation, Inc.
+/* Definitions to make GDB run on a Pyramid under OSx 4.0 (4.2bsd).
+   Copyright (C) 1988, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -48,10 +48,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */
 
index 0f96c385f5310638ab60686647d69f39e3335932..dd82d9e997723eca50e54f83a5a6b7773e0b6fd2 100644 (file)
@@ -1,6 +1,7 @@
 /* Parameters for target machine of Sun 4, for GDB, the GNU debugger.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
    Contributed by Michael Tiemann (tiemann@mcc.com)
+
 This file is part of GDB.
 
 This program is free software; you can redistribute it and/or modify
@@ -27,10 +28,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* When passing a structure to a function, Sun cc passes the address
    in a register, not the structure itself.  It (under SunOS4) creates
    two symbols, so we get a LOC_ARG saying the address is on the stack
index 21fd588c83f90a8753fb520e106083f64b0d80a2..38ce53ac3b33143bacf542749cd0f25ffe66c077 100644 (file)
@@ -1,5 +1,5 @@
 /* Parameters for execution on a Sun, for GDB, the GNU debugger.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 199 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -22,10 +22,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Address of the end of stack space.  We get this from the system
    include files. */
 
index 5b6aa9175b21b29693e619dc5ebf402c747713ea..d7e403fccbf8f74f9adc450061140d655569fc1c 100644 (file)
@@ -19,8 +19,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define HAVE_68881
 
-/* TARGET_SUN3 might be a more logical name, but that's used by
-   ../include/target.h (included by ../include/a.out.gnu.h).  */
+/* Let native-versus-cross support code know we are targeting sun3,
+   and modify registers to include sun3 fpustate register.  */
+
 #define GDB_TARGET_IS_SUN3 1
 
 /* Define this if the C compiler puts an underscore at the front
@@ -28,10 +29,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Address of the end of stack space.  We get this from the system
    include files. */
 
@@ -40,8 +37,3 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define STACK_END_ADDR USRSTACK
 
 #include "tm-68k.h"
-  SWAP_TARGET_AND_HOST (temp, 4);                       \
-  bcopy ((char *)&temp, (char *)(dummyname) + 20, 4);   \
-  temp = fun;                                           \
-  SWAP_TARGET_AND_HOST (temp, 4);                       \
-  bcopy ((char *)&temp, (char *)(dummyname) + 14, 4); }
index a033cd5ad0b22d7f36b3bfda41357b7c50c01efa..3365374c245f44a43816948de85e0c05d4599a1d 100644 (file)
@@ -1,5 +1,5 @@
 /* Parameters for execution on a Sun 386i, for GDB, the GNU debugger.
-   Copyright (C) 1986, 1987 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -38,10 +38,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 /* sun386 ptrace seems unable to change the frame pointer */
 #define PTRACE_FP_BUG
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */
 
index 41d6db9bd3c7bf443a37b2b1a010120756c98e35..508920105839691d66cc493f22b21058e4fa4fba 100644 (file)
@@ -1,6 +1,6 @@
 /* Definitions to make GDB run on a Sequent Symmetry under dynix 3.0,
    with Weitek 1167 and i387 support.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -31,10 +31,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */
 
index 7fadb414ce4dcbbee8d7dc181db4620b70975c58..72290fe26575e7eb92edfb9741a4c0dc984d101c 100644 (file)
@@ -30,10 +30,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */
 
index 40e49ef26e1cd711f29b30848dc6cd2c31f30020..0dea3012df25e4fcfa7935e24312f7632a222e33 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions to make GDB run on an encore under umax 4.2
-   Copyright (C) 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -24,10 +24,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Exec files and symbol tables are in COFF format */
-
-#define COFF_FORMAT
-
 /* Need to get function ends by adding this to epilogue address from .bf
    record, not using x_fsize field.  */
 #define FUNCTION_EPILOGUE_SIZE 4
index 8f5b29b1b02152edf80998529c943b6858d3c3ee..ac0bc8643282461af308f6ef0207659572ba8686 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions to make GDB run on a vax under 4.2bsd.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -45,10 +45,6 @@ fix to bug-gdb@prep.ai.mit.edu.  */
 
 #define NAMES_HAVE_UNDERSCORE
 
-/* Debugger information will be in DBX format.  */
-
-#define READ_DBX_FORMAT
-
 /* Offset from address of function to start of its code.
    Zero on most machines.  */