summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/gcc/config/a29k/a29k-udi.h104
-rw-r--r--gnu/usr.bin/gcc/config/alpha/gdb-osf12.h26
-rw-r--r--gnu/usr.bin/gcc/config/alpha/gdb-osf2.h26
-rw-r--r--gnu/usr.bin/gcc/config/alpha/gdb.h26
-rw-r--r--gnu/usr.bin/gcc/config/i386/sysv4gdb.h7
-rw-r--r--gnu/usr.bin/gcc/config/mips/bsd-4-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/bsd-5-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/dec-gosf1.h25
-rw-r--r--gnu/usr.bin/gcc/config/mips/ecoff-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/ecoffl-gdb.h24
-rw-r--r--gnu/usr.bin/gcc/config/mips/iris3-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/iris4-gdb.h24
-rw-r--r--gnu/usr.bin/gcc/config/mips/iris4gl.h7
-rw-r--r--gnu/usr.bin/gcc/config/mips/iris5gdb.h7
-rw-r--r--gnu/usr.bin/gcc/config/mips/mips-4-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/mips-5-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/news4-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/news5-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/svr3-4-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/svr3-5-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/svr4-4-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/svr4-5-gdb.h23
-rw-r--r--gnu/usr.bin/gcc/config/mips/svr4-t-gdb.h4
-rw-r--r--gnu/usr.bin/gcc/config/mips/ultrix-gdb.h23
24 files changed, 0 insertions, 579 deletions
diff --git a/gnu/usr.bin/gcc/config/a29k/a29k-udi.h b/gnu/usr.bin/gcc/config/a29k/a29k-udi.h
deleted file mode 100644
index 57b13580f22..00000000000
--- a/gnu/usr.bin/gcc/config/a29k/a29k-udi.h
+++ /dev/null
@@ -1,104 +0,0 @@
-/* Definitions of target machine for GNU compiler, for AMD Am29000 CPU
- running over UDI using COFF.
- Copyright (C) 1994 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#include "a29k/a29k.h"
-
-/* Output DBX (stabs) debugging information if doing -gstabs. */
-
-#define DBX_DEBUGGING_INFO
-
-/* Generate SDB debugging information by default. */
-
-#define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
-
-/* Support the ctors and dtors sections for g++. */
-
-#define CTORS_SECTION_ASM_OP "\t.use .ctors"
-#define DTORS_SECTION_ASM_OP "\t.use .dtors"
-
-/* A list of other sections which the compiler might be "in" at any
- given time. */
-
-#undef EXTRA_SECTIONS
-#define EXTRA_SECTIONS readonly_data, in_ctors, in_dtors
-
-/* A list of extra section function definitions. */
-
-#undef EXTRA_SECTION_FUNCTIONS
-#define EXTRA_SECTION_FUNCTIONS \
- READONLY_DATA_FUNCTION \
- CTORS_SECTION_FUNCTION \
- DTORS_SECTION_FUNCTION
-
-#define READONLY_DATA_FUNCTION \
-void \
-literal_section () \
-{ \
- if (in_section != readonly_data) \
- { \
- fprintf (asm_out_file, "%s\n", READONLY_DATA_SECTION_ASM_OP); \
- in_section = readonly_data; \
- } \
-} \
-
-#define CTORS_SECTION_FUNCTION \
-void \
-ctors_section () \
-{ \
- if (in_section != in_ctors) \
- { \
- fprintf (asm_out_file, "%s\n", CTORS_SECTION_ASM_OP); \
- in_section = in_ctors; \
- } \
-}
-
-#define DTORS_SECTION_FUNCTION \
-void \
-dtors_section () \
-{ \
- if (in_section != in_dtors) \
- { \
- fprintf (asm_out_file, "%s\n", DTORS_SECTION_ASM_OP); \
- in_section = in_dtors; \
- } \
-}
-
-#define INT_ASM_OP ".word"
-
-/* A C statement (sans semicolon) to output an element in the table of
- global constructors. */
-#define ASM_OUTPUT_CONSTRUCTOR(FILE,NAME) \
- do { \
- ctors_section (); \
- fprintf (FILE, "\t%s\t ", INT_ASM_OP); \
- assemble_name (FILE, NAME); \
- fprintf (FILE, "\n"); \
- } while (0)
-
-/* A C statement (sans semicolon) to output an element in the table of
- global destructors. */
-#define ASM_OUTPUT_DESTRUCTOR(FILE,NAME) \
- do { \
- dtors_section (); \
- fprintf (FILE, "\t%s\t ", INT_ASM_OP); \
- assemble_name (FILE, NAME); \
- fprintf (FILE, "\n"); \
- } while (0)
diff --git a/gnu/usr.bin/gcc/config/alpha/gdb-osf12.h b/gnu/usr.bin/gcc/config/alpha/gdb-osf12.h
deleted file mode 100644
index 98c28971401..00000000000
--- a/gnu/usr.bin/gcc/config/alpha/gdb-osf12.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* Definitions of target machine for GNU compiler, for DEC Alpha, using
- encapsulated stabs and OSF V1.2.
- Copyright (C) 1994 Free Software Foundation, Inc.
- Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#include "alpha/osf12.h"
-
-#undef PREFERRED_DEBUGGING_TYPE
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
diff --git a/gnu/usr.bin/gcc/config/alpha/gdb-osf2.h b/gnu/usr.bin/gcc/config/alpha/gdb-osf2.h
deleted file mode 100644
index 5ddb7981b34..00000000000
--- a/gnu/usr.bin/gcc/config/alpha/gdb-osf2.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* Definitions of target machine for GNU compiler, for DEC Alpha, using
- encapsulated stabs.
- Copyright (C) 1992, 1993 Free Software Foundation, Inc.
- Contributed by Peter Schauer (pes@regent.e-technik.tu-muenchen.de).
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#include "alpha/osf2.h"
-
-#undef PREFERRED_DEBUGGING_TYPE
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
diff --git a/gnu/usr.bin/gcc/config/alpha/gdb.h b/gnu/usr.bin/gcc/config/alpha/gdb.h
deleted file mode 100644
index ecdbe40a9a4..00000000000
--- a/gnu/usr.bin/gcc/config/alpha/gdb.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* Definitions of target machine for GNU compiler, for DEC Alpha, using
- encapsulated stabs.
- Copyright (C) 1992, 1993 Free Software Foundation, Inc.
- Contributed by Peter Schauer (pes@regent.e-technik.tu-muenchen.de).
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#include "alpha/alpha.h"
-
-#undef PREFERRED_DEBUGGING_TYPE
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
diff --git a/gnu/usr.bin/gcc/config/i386/sysv4gdb.h b/gnu/usr.bin/gcc/config/i386/sysv4gdb.h
deleted file mode 100644
index dd1e8f256f3..00000000000
--- a/gnu/usr.bin/gcc/config/i386/sysv4gdb.h
+++ /dev/null
@@ -1,7 +0,0 @@
-/* Target definitions for GNU compiler for Intel 80386 running System V.4
- with gas and gdb. */
-
-/* Use stabs instead of DWARF debug format. */
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-
-#include "i386/sysv4.h"
diff --git a/gnu/usr.bin/gcc/config/mips/bsd-4-gdb.h b/gnu/usr.bin/gcc/config/mips/bsd-4-gdb.h
deleted file mode 100644
index 030882aafbf..00000000000
--- a/gnu/usr.bin/gcc/config/mips/bsd-4-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Mips BSD version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/bsd-4.h"
diff --git a/gnu/usr.bin/gcc/config/mips/bsd-5-gdb.h b/gnu/usr.bin/gcc/config/mips/bsd-5-gdb.h
deleted file mode 100644
index d1871f039a4..00000000000
--- a/gnu/usr.bin/gcc/config/mips/bsd-5-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Mips RISC-OS 5.0 BSD version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/bsd-5.h"
diff --git a/gnu/usr.bin/gcc/config/mips/dec-gosf1.h b/gnu/usr.bin/gcc/config/mips/dec-gosf1.h
deleted file mode 100644
index 908c5d92030..00000000000
--- a/gnu/usr.bin/gcc/config/mips/dec-gosf1.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Definitions of target machine for GNU compiler.
- DECstation (OSF/1) version with stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-/* Use stabs instead of ECOFF debug format. */
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-
-#include "mips/dec-osf1.h"
diff --git a/gnu/usr.bin/gcc/config/mips/ecoff-gdb.h b/gnu/usr.bin/gcc/config/mips/ecoff-gdb.h
deleted file mode 100644
index 286ea82dc7f..00000000000
--- a/gnu/usr.bin/gcc/config/mips/ecoff-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. MIPS version using
- encapsulated stabs and the GOFAST software floating point library.
- Copyright (C) 1994 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/ecoff.h"
diff --git a/gnu/usr.bin/gcc/config/mips/ecoffl-gdb.h b/gnu/usr.bin/gcc/config/mips/ecoffl-gdb.h
deleted file mode 100644
index 0bf4bb05531..00000000000
--- a/gnu/usr.bin/gcc/config/mips/ecoffl-gdb.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* Definitions of target machine for GNU compiler. Little endian MIPS
- version using encapsulated stabs and the GOFAST software floating
- point library.
- Copyright (C) 1994 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/ecoffl.h"
diff --git a/gnu/usr.bin/gcc/config/mips/iris3-gdb.h b/gnu/usr.bin/gcc/config/mips/iris3-gdb.h
deleted file mode 100644
index 94ecb1a0e33..00000000000
--- a/gnu/usr.bin/gcc/config/mips/iris3-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Iris version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/iris3.h"
diff --git a/gnu/usr.bin/gcc/config/mips/iris4-gdb.h b/gnu/usr.bin/gcc/config/mips/iris4-gdb.h
deleted file mode 100644
index 7e57d63fb8d..00000000000
--- a/gnu/usr.bin/gcc/config/mips/iris4-gdb.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* Definitions of target machine for GNU compiler. Iris version 4.
- Copyright (C) 1991 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-/* Use stabs instead of ECOFF debug format. */
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-
-#include "mips/iris4.h"
diff --git a/gnu/usr.bin/gcc/config/mips/iris4gl.h b/gnu/usr.bin/gcc/config/mips/iris4gl.h
deleted file mode 100644
index f39088bc1b5..00000000000
--- a/gnu/usr.bin/gcc/config/mips/iris4gl.h
+++ /dev/null
@@ -1,7 +0,0 @@
-/* Like iris4-gdb.h, but always inhibits assembler optimization for MIPS as.
- Use this via mips-sgi-iris4loser if you need it. */
-
-/* Use stabs instead of ECOFF debug format. */
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-
-#include "mips/iris4loser.h"
diff --git a/gnu/usr.bin/gcc/config/mips/iris5gdb.h b/gnu/usr.bin/gcc/config/mips/iris5gdb.h
deleted file mode 100644
index 44a36cdaeec..00000000000
--- a/gnu/usr.bin/gcc/config/mips/iris5gdb.h
+++ /dev/null
@@ -1,7 +0,0 @@
-/* Definitions of target machine for GNU compiler. Irix version 5 with gas
- and gdb. */
-
-/* Use stabs instead of ECOFF debug format. */
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-
-#include "mips/iris5gas.h"
diff --git a/gnu/usr.bin/gcc/config/mips/mips-4-gdb.h b/gnu/usr.bin/gcc/config/mips/mips-4-gdb.h
deleted file mode 100644
index 773b1eacbc1..00000000000
--- a/gnu/usr.bin/gcc/config/mips/mips-4-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. MIPS default version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/mips.h"
diff --git a/gnu/usr.bin/gcc/config/mips/mips-5-gdb.h b/gnu/usr.bin/gcc/config/mips/mips-5-gdb.h
deleted file mode 100644
index 86f1ce83604..00000000000
--- a/gnu/usr.bin/gcc/config/mips/mips-5-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. MIPS RISC-OS 5.0
- default version using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/mips-5.h"
diff --git a/gnu/usr.bin/gcc/config/mips/news4-gdb.h b/gnu/usr.bin/gcc/config/mips/news4-gdb.h
deleted file mode 100644
index 2f5864e9b37..00000000000
--- a/gnu/usr.bin/gcc/config/mips/news4-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Sony RISC NEWS (mips)
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/news4.h"
diff --git a/gnu/usr.bin/gcc/config/mips/news5-gdb.h b/gnu/usr.bin/gcc/config/mips/news5-gdb.h
deleted file mode 100644
index acbc7807f84..00000000000
--- a/gnu/usr.bin/gcc/config/mips/news5-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Sony RISC NEWS (mips)
- System V using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/news5.h"
diff --git a/gnu/usr.bin/gcc/config/mips/svr3-4-gdb.h b/gnu/usr.bin/gcc/config/mips/svr3-4-gdb.h
deleted file mode 100644
index 2a652f9c122..00000000000
--- a/gnu/usr.bin/gcc/config/mips/svr3-4-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Mips System V version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/svr3-4.h"
diff --git a/gnu/usr.bin/gcc/config/mips/svr3-5-gdb.h b/gnu/usr.bin/gcc/config/mips/svr3-5-gdb.h
deleted file mode 100644
index e9fd6016c02..00000000000
--- a/gnu/usr.bin/gcc/config/mips/svr3-5-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Mips RISC-OS 5.0 System V version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/svr3-5.h"
diff --git a/gnu/usr.bin/gcc/config/mips/svr4-4-gdb.h b/gnu/usr.bin/gcc/config/mips/svr4-4-gdb.h
deleted file mode 100644
index 86e37dc1f0e..00000000000
--- a/gnu/usr.bin/gcc/config/mips/svr4-4-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Mips System V.4 version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/svr4-4.h"
diff --git a/gnu/usr.bin/gcc/config/mips/svr4-5-gdb.h b/gnu/usr.bin/gcc/config/mips/svr4-5-gdb.h
deleted file mode 100644
index 166ca5f4de6..00000000000
--- a/gnu/usr.bin/gcc/config/mips/svr4-5-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. Mips RISC-OS 5.0 System V.4 version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/svr4-5.h"
diff --git a/gnu/usr.bin/gcc/config/mips/svr4-t-gdb.h b/gnu/usr.bin/gcc/config/mips/svr4-t-gdb.h
deleted file mode 100644
index ed30051b061..00000000000
--- a/gnu/usr.bin/gcc/config/mips/svr4-t-gdb.h
+++ /dev/null
@@ -1,4 +0,0 @@
-/* Definitions of target machine for GNU compiler. Tandem S2 w/ NonStop UX
- using encapsulated stabs. */
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/svr4-t.h"
diff --git a/gnu/usr.bin/gcc/config/mips/ultrix-gdb.h b/gnu/usr.bin/gcc/config/mips/ultrix-gdb.h
deleted file mode 100644
index 71af7c7562e..00000000000
--- a/gnu/usr.bin/gcc/config/mips/ultrix-gdb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Definitions of target machine for GNU compiler. DECstation (ultrix) version
- using encapsulated stabs.
- Copyright (C) 1992 Free Software Foundation, Inc.
-
-This file is part of GNU CC.
-
-GNU CC is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-GNU CC is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
-#include "mips/ultrix.h"