diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1996-01-16 16:44:22 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1996-01-16 16:44:22 +0000 |
commit | 9480420717f786f5330fc4eed4a54b31438b751b (patch) | |
tree | 463503b1169c80d3684bf1ce21a5a64c3c94cfef /gcc | |
parent | e786ce55298fc8e76bea5199d9becbcfc55300df (diff) | |
download | gcc-9480420717f786f5330fc4eed4a54b31438b751b.zip gcc-9480420717f786f5330fc4eed4a54b31438b751b.tar.gz gcc-9480420717f786f5330fc4eed4a54b31438b751b.tar.bz2 |
Use dbxcoff.h
From-SVN: r11027
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/a29k/udi.h | 8 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.h | 8 | ||||
-rw-r--r-- | gcc/config/i960/i960-coff.h | 4 | ||||
-rw-r--r-- | gcc/config/m68k/coff.h | 8 |
4 files changed, 10 insertions, 18 deletions
diff --git a/gcc/config/a29k/udi.h b/gcc/config/a29k/udi.h index 57b1358..9a5f103 100644 --- a/gcc/config/a29k/udi.h +++ b/gcc/config/a29k/udi.h @@ -21,13 +21,9 @@ Boston, MA 02111-1307, USA. */ #include "a29k/a29k.h" -/* Output DBX (stabs) debugging information if doing -gstabs. */ +/* Support -gstabs. */ -#define DBX_DEBUGGING_INFO - -/* Generate SDB debugging information by default. */ - -#define PREFERRED_DEBUGGING_TYPE SDB_DEBUG +#include "dbxcoff.h" /* Support the ctors and dtors sections for g++. */ diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 33208272..2f75010 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -1088,13 +1088,9 @@ dtors_section() \ #define SDB_DEBUGGING_INFO #define SDB_DELIM "\n" -/* Output DBX (stabs) debugging information if doing -gstabs. */ +/* Support -gstabs. */ -#define DBX_DEBUGGING_INFO - -/* Generate SDB debugging information by default. */ - -#define PREFERRED_DEBUGGING_TYPE SDB_DEBUG +#include "dbxcoff.h" /* A C statement to output something to the assembler file to switch to section NAME for object DECL which is either a FUNCTION_DECL, a VAR_DECL or diff --git a/gcc/config/i960/i960-coff.h b/gcc/config/i960/i960-coff.h index 15415e3..cb2bdb5 100644 --- a/gcc/config/i960/i960-coff.h +++ b/gcc/config/i960/i960-coff.h @@ -30,6 +30,10 @@ Boston, MA 02111-1307, USA. */ #undef PREFERRED_DEBUGGING_TYPE #define PREFERRED_DEBUGGING_TYPE SDB_DEBUG +/* Support -gstabs using stabs in COFF sections. */ + +#include "dbxcoff.h" + #undef ASM_FILE_START #define ASM_FILE_START(FILE) \ output_file_directive ((FILE), main_input_filename) diff --git a/gcc/config/m68k/coff.h b/gcc/config/m68k/coff.h index b2fc343..89a59f2 100644 --- a/gcc/config/m68k/coff.h +++ b/gcc/config/m68k/coff.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler. m68k series COFF object files and debugging, version. - Copyright (C) 1994 Free Software Foundation, Inc. + Copyright (C) 1994, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -24,15 +24,11 @@ Boston, MA 02111-1307, USA. */ /* Generate sdb debugging information. */ -#undef DBX_DEBUGGING_INFO #define SDB_DEBUGGING_INFO /* Output DBX (stabs) debugging information if using -gstabs. */ -#define DBX_DEBUGGING_INFO - -#undef PREFERRED_DEBUGGING_TYPE -#define PREFERRED_DEBUGGING_TYPE SDB_DEBUG +#include "dbxcoff.h" /* COFF symbols don't start with an underscore. */ |