diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/final.c | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2891162..227d0be 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Mon May 22 13:14:03 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> + + * final.c (final_scan_insn, case NOTE_INSN_FUNCTION_BEG): Remove + dangling "else" that causes "break" to be conditional. + Also remove unneeded code at start. + Mon May 22 17:31:35 2000 Philippe De Muyter <phdm@macqel.be> * m68k/m68k.h (STORE_FLAG_VALUE): Macro set to (-1), not -1. diff --git a/gcc/final.c b/gcc/final.c index 2ab018b..0d81fd4 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -2138,8 +2138,6 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) break; case NOTE_INSN_FUNCTION_BEG: - if (write_symbols == NO_DEBUG) - break; #if defined(SDB_DEBUGGING_INFO) && defined(MIPS_DEBUGGING_INFO) /* MIPS stabs require the parameter descriptions to be after the function entry point rather than before. */ @@ -2148,7 +2146,6 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) app_disable (); sdbout_begin_function (last_linenum); } - else #endif #ifdef DWARF_DEBUGGING_INFO /* This outputs a marker where the function body starts, so it |