Commit 2716cff2 by Richard Stallman

(compile_file): If support dbx output,

always output 0 at start of text section.

From-SVN: r4469
parent d3652c4b
...@@ -1819,9 +1819,14 @@ compile_file (name) ...@@ -1819,9 +1819,14 @@ compile_file (name)
ASM_IDENTIFY_LANGUAGE (asm_out_file); ASM_IDENTIFY_LANGUAGE (asm_out_file);
#endif #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. */
#ifdef DBX_DEBUGGING_INFO
/* Don't let the first function fall at the same address /* Don't let the first function fall at the same address
as gcc_compiled., if profiling. */ as gcc_compiled., if profiling. */
if (profile_flag || profile_block_flag) if (profile_flag || profile_block_flag)
#endif
assemble_zeros (UNITS_PER_WORD); assemble_zeros (UNITS_PER_WORD);
/* If dbx symbol table desired, initialize writing it /* If dbx symbol table desired, initialize writing it
......
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