diff options
author | Richard Stallman <rms@gnu.org> | 1992-10-29 05:44:20 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-10-29 05:44:20 +0000 |
commit | d92761c01547fe487de4e3a9249e5189ee8cb0fd (patch) | |
tree | da09d6a2e841145e966780651786d3238c3e9e53 /gcc | |
parent | 39b56c2ac762c1f0516315dee6e79cd69527378d (diff) | |
download | gcc-d92761c01547fe487de4e3a9249e5189ee8cb0fd.zip gcc-d92761c01547fe487de4e3a9249e5189ee8cb0fd.tar.gz gcc-d92761c01547fe487de4e3a9249e5189ee8cb0fd.tar.bz2 |
(NO_UNDERSCORES): Test was backwards.
(SDB_DEBUGGING_INFO): #undef deleted.
(DBX_DEBUGGING_INFO): Definition deleted.
From-SVN: r2644
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/gas.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/config/i386/gas.h b/gcc/config/i386/gas.h index 35fcbea..00fc08a 100644 --- a/gcc/config/i386/gas.h +++ b/gcc/config/i386/gas.h @@ -22,7 +22,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "i386.h" -#ifdef YES_UNDERSCORES +#ifndef YES_UNDERSCORES /* Define this now, because bsd386.h tests it. */ #define NO_UNDERSCORES #endif @@ -62,14 +62,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define ASM_OUTPUT_IDENT(FILE, NAME) fprintf (FILE, "\t.ident \"%s\"\n", NAME); -/* We do not want to output SDB debugging information. */ - -#undef SDB_DEBUGGING_INFO - -/* We want to output DBX debugging information. */ - -#define DBX_DEBUGGING_INFO - /* Implicit library calls should use memcpy, not bcopy, etc. */ #define TARGET_MEM_FUNCTIONS |