diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-27 16:45:49 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-27 16:45:49 -0800 |
commit | 609380f61ee507ef4ee4b9e00e10df8f1213502b (patch) | |
tree | 050903c3db5130221fd05e457fe9c7fc0fed7633 /gcc | |
parent | 650f773a6db2f8cb447ed04daa33718f462c374f (diff) | |
download | gcc-609380f61ee507ef4ee4b9e00e10df8f1213502b.zip gcc-609380f61ee507ef4ee4b9e00e10df8f1213502b.tar.gz gcc-609380f61ee507ef4ee4b9e00e10df8f1213502b.tar.bz2 |
(ASM_OUTPUT_DEF): Delete definition.
From-SVN: r6664
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/dwarfout.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index b3d3172..7a6fecc 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -561,10 +561,7 @@ static unsigned lookup_filename (); output operations. If necessary, these may be overridden from within your tm.h file, - but typically, you shouldn't need to override these. One known - exception is ASM_OUTPUT_DEF which has to be different for stock - sparc/svr4 assemblers. -*/ + but typically, you shouldn't need to override these. */ #ifndef ASM_OUTPUT_PUSH_SECTION #define ASM_OUTPUT_PUSH_SECTION(FILE, SECTION) \ @@ -584,16 +581,6 @@ static unsigned lookup_filename (); } while (0) #endif -#ifndef ASM_OUTPUT_DEF -#define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \ - do { fprintf ((FILE), "\t%s\t", SET_ASM_OP); \ - assemble_name (FILE, LABEL1); \ - fprintf (FILE, ","); \ - assemble_name (FILE, LABEL2); \ - fprintf (FILE, "\n"); \ - } while (0) -#endif - #ifndef ASM_OUTPUT_DWARF_DELTA2 #define ASM_OUTPUT_DWARF_DELTA2(FILE,LABEL1,LABEL2) \ do { fprintf ((FILE), "\t%s\t", UNALIGNED_SHORT_ASM_OP); \ |