From 2716cff2bad25cdb334518e8bf6bc2c35eee2f4b Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sat, 15 May 1993 14:29:49 +0000 Subject: [PATCH] (compile_file): If support dbx output, always output 0 at start of text section. From-SVN: r4469 --- gcc/toplev.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gcc/toplev.c b/gcc/toplev.c index 2ca51c6d0e0..8acbfb7732e 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1819,9 +1819,14 @@ 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. */ +#ifdef DBX_DEBUGGING_INFO /* 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 -- 2.30.2