diff options
author | Richard Stallman <rms@gnu.org> | 1992-07-12 01:39:08 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-07-12 01:39:08 +0000 |
commit | 9bb2e4fe3943863eb31beab3dd9dca55a5273d68 (patch) | |
tree | 22984838cdbec08a9c6b62adfdc0fd5065f2cddb | |
parent | e7a522bae602d0dab745f0c996b554ad7100b274 (diff) | |
download | gcc-9bb2e4fe3943863eb31beab3dd9dca55a5273d68.zip gcc-9bb2e4fe3943863eb31beab3dd9dca55a5273d68.tar.gz gcc-9bb2e4fe3943863eb31beab3dd9dca55a5273d68.tar.bz2 |
*** empty log message ***
From-SVN: r1561
-rw-r--r-- | gcc/varasm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 69afc66..d15ddb9 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -421,11 +421,10 @@ assemble_asm (string) fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string)); } -/* Tiemann: please get rid of this conditional and put appropriate - definitions in each of the files that should have them. - The type of debugging format is not the right parameter to - control how some other aspect of assembler output is done. */ - +#if 0 /* This should no longer be needed, because + flag_gnu_linker should be 0 on these systems, + which should prevent any output + if ASM_OUTPUT_CONSTRUCTOR and ASM_OUTPUT_DESTRUCTOR are absent. */ #if !(defined(DBX_DEBUGGING_INFO) && !defined(FASCIST_ASSEMBLER)) #ifndef ASM_OUTPUT_CONSTRUCTOR #define ASM_OUTPUT_CONSTRUCTOR(file, name) @@ -434,6 +433,7 @@ assemble_asm (string) #define ASM_OUTPUT_DESTRUCTOR(file, name) #endif #endif +#endif /* 0 */ /* Record an element in the table of global destructors. How this is done depends on what sort of assembler and linker |