Commit 9bb2e4fe by Richard Stallman

*** empty log message ***

From-SVN: r1561
parent e7a522ba
...@@ -421,11 +421,10 @@ assemble_asm (string) ...@@ -421,11 +421,10 @@ assemble_asm (string)
fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string)); fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
} }
/* Tiemann: please get rid of this conditional and put appropriate #if 0 /* This should no longer be needed, because
definitions in each of the files that should have them. flag_gnu_linker should be 0 on these systems,
The type of debugging format is not the right parameter to which should prevent any output
control how some other aspect of assembler output is done. */ if ASM_OUTPUT_CONSTRUCTOR and ASM_OUTPUT_DESTRUCTOR are absent. */
#if !(defined(DBX_DEBUGGING_INFO) && !defined(FASCIST_ASSEMBLER)) #if !(defined(DBX_DEBUGGING_INFO) && !defined(FASCIST_ASSEMBLER))
#ifndef ASM_OUTPUT_CONSTRUCTOR #ifndef ASM_OUTPUT_CONSTRUCTOR
#define ASM_OUTPUT_CONSTRUCTOR(file, name) #define ASM_OUTPUT_CONSTRUCTOR(file, name)
...@@ -434,6 +433,7 @@ assemble_asm (string) ...@@ -434,6 +433,7 @@ assemble_asm (string)
#define ASM_OUTPUT_DESTRUCTOR(file, name) #define ASM_OUTPUT_DESTRUCTOR(file, name)
#endif #endif
#endif #endif
#endif /* 0 */
/* Record an element in the table of global destructors. /* Record an element in the table of global destructors.
How this is done depends on what sort of assembler and linker How this is done depends on what sort of assembler and linker
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment