From 2bc9f98c24621b3e00fd41d32dcaec692961ac0d Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 22 May 2000 17:05:15 +0000 Subject: [PATCH] final.c (final_scan_insn, [...]): Remove dangling "else" that causes "break" to be conditional. * 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. From-SVN: r34082 --- gcc/ChangeLog | 6 ++++++ gcc/final.c | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 28911623773..227d0bea85d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Mon May 22 13:14:03 2000 Richard Kenner + + * 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 * m68k/m68k.h (STORE_FLAG_VALUE): Macro set to (-1), not -1. diff --git a/gcc/final.c b/gcc/final.c index 2ab018b8598..0d81fd4e184 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 -- 2.30.2