From 9fd4e3280e7795e47dcff290b9efcd734217c900 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 1 Nov 1999 13:22:59 -0800 Subject: [PATCH] toplev.c (rest_of_compilation): Don't optimize the CFG when rebuilding, just before dbr. * toplev.c (rest_of_compilation): Don't optimize the CFG when rebuilding, just before dbr. From-SVN: r30330 --- gcc/ChangeLog | 31 ++++++++++++++++++------------- gcc/toplev.c | 4 ++-- 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3dd474df0e1..2dcf116334d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Nov 1 13:22:30 1999 Richard Henderson + + * toplev.c (rest_of_compilation): Don't optimize the CFG + when rebuilding, just before dbr. + Mon Nov 1 14:35:50 1999 Kaveh R. Ghazi * output.h (assemble_end_function, assemble_destructor, @@ -20,12 +25,12 @@ Mon Nov 1 08:03:15 1999 Richard Kenner Sun Oct 31 15:48:49 1999 Philippe De Muyter - * fixinc/fixtests.c, fixinc/fixfixes.c : Keep `#' in first column for - old cpp's. - * fixinc/fixincl.c (fcntl.h) : Do not include this file twice. - (sys/mman.h): Include this file only if #HAVE_MMAP. - (run_compiles): Initialize `esac_fmt' with one old KR string, not - with automatically concatenated ANSI strings. + * fixinc/fixtests.c, fixinc/fixfixes.c : Keep `#' in first column for + old cpp's. + * fixinc/fixincl.c (fcntl.h) : Do not include this file twice. + (sys/mman.h): Include this file only if #HAVE_MMAP. + (run_compiles): Initialize `esac_fmt' with one old KR string, not + with automatically concatenated ANSI strings. Sun Oct 31 23:57:07 1999 Mark Mitchell @@ -54,8 +59,8 @@ Sun Oct 31 23:03:25 1999 Jeffrey A Law (law@cygnus.com) * flow.c (calculate_global_regs_live): Fix thinko. - * integrate.c (expand_inline_function): Fix bugs in previous - change from Oct 28, 1999. + * integrate.c (expand_inline_function): Fix bugs in previous + change from Oct 28, 1999. Sun Oct 31 20:27:45 1999 Mark Mitchell @@ -99,9 +104,9 @@ Sun Oct 31 20:42:17 1999 Kaveh R. Ghazi Sun Oct 31 13:32:15 CET 1999 Marc Lehmann * toplev.c (rest_of_compilation): Seperate the setjmp/vfork clobber - warning from -Wuninitialized and put it under -W. - * function.c (uninitialized_vars_warning): Warn only when the - corresponding flag is set. + warning from -Wuninitialized and put it under -W. + * function.c (uninitialized_vars_warning): Warn only when the + corresponding flag is set. Sun Oct 31 01:53:30 1999 Jeffrey A Law (law@cygnus.com) @@ -262,8 +267,8 @@ Fri Oct 29 09:05:34 1999 Catherine Moore Fri Oct 29 16:30:04 1999 Andrew Haley - * config/mips/elf.h: remove NAME__MAIN and SYMBOL__MAIN. - * config/mips/elf64.h: ditto. + * config/mips/elf.h: remove NAME__MAIN and SYMBOL__MAIN. + * config/mips/elf64.h: ditto. Fri Oct 29 08:03:57 1999 Catherine Moore diff --git a/gcc/toplev.c b/gcc/toplev.c index 64fc23e1df4..503ada9687f 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4344,9 +4344,9 @@ rest_of_compilation (decl) (dbr_sched_time, { /* ??? Keep the CFG up to date after cross-jumping. */ - find_basic_blocks (insns, max_reg_num (), rtl_dump_file, 1); + find_basic_blocks (insns, max_reg_num (), rtl_dump_file, 0); count_or_remove_death_notes (NULL, 1); - life_analysis (insns, max_reg_num (), rtl_dump_file, 1); + life_analysis (insns, max_reg_num (), rtl_dump_file, 0); dbr_schedule (insns, rtl_dump_file); }); -- 2.30.2