From: Richard Stallman Date: Mon, 24 May 1993 04:31:59 +0000 (+0000) Subject: (compile_file): Undo previous changes (that were to call X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bd405e3eedc4689c2508e4343d46da0abffeca7d;p=gcc.git (compile_file): Undo previous changes (that were to call assemble_zeros whenever DBX_DEBUGGING_INFO is defined. From-SVN: r4547 --- diff --git a/gcc/toplev.c b/gcc/toplev.c index 7eab30ffb48..a7db37c1132 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1819,14 +1819,19 @@ compile_file (name) ASM_IDENTIFY_LANGUAGE (asm_out_file); #endif - /* dbx on Suns needs to separate gcc_compiled. from first function. - We do not test write_symbols because -g should not alter - the actual code generated. */ -#ifndef DBX_DEBUGGING_INFO +/* ??? Note: There used to be a conditional here + to call assemble_zeros without fail if DBX_DEBUGGING_INFO is defined. + This was to guarantee separation between gcc_compiled. and + the first function, for the sake of dbx on Suns. + However, having the extra zero here confused the Emacs + code for unexec, and might confuse other programs too. + Therefore, I took out that change. + In future versions we should find another way to solve + that dbx problem. -- rms, 23 May 93. */ + /* Don't let the first function fall at the same address as gcc_compiled., if profiling. */ if (profile_flag || profile_block_flag) -#endif assemble_zeros (UNITS_PER_WORD); /* If dbx symbol table desired, initialize writing it