From: Jan Hubicka Date: Thu, 2 Apr 2009 14:08:01 +0000 (+0200) Subject: passes.c (init_optimization_passes): Remove two copies of ehcleanup pass. X-Git-Tag: releases/gcc-4.5.0~6943 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=34f42a49e5809f486e9f019bfaf067952da404cd;p=thirdparty%2Fgcc.git passes.c (init_optimization_passes): Remove two copies of ehcleanup pass. * passes.c (init_optimization_passes): Remove two copies of ehcleanup pass. From-SVN: r145451 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 499d3d6bf6f4..2e82c7d21d56 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-04-02 Jan Hubicka + + * passes.c (init_optimization_passes): Remove two copies of ehcleanup + pass. + 2009-04-02 H.J. Lu * config/i386/i386.c (ix86_abi): Move initialization to ... diff --git a/gcc/passes.c b/gcc/passes.c index 6ebceb34f1c2..3d7b18c15b94 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -592,7 +592,6 @@ init_optimization_passes (void) /* Initial scalar cleanups before alias computation. They ensure memory accesses are not indirect wherever possible. */ NEXT_PASS (pass_strip_predict_hints); - NEXT_PASS (pass_cleanup_eh); NEXT_PASS (pass_update_address_taken); NEXT_PASS (pass_rename_ssa_copies); NEXT_PASS (pass_complete_unrolli); @@ -690,7 +689,6 @@ init_optimization_passes (void) NEXT_PASS (pass_phi_only_cprop); NEXT_PASS (pass_cd_dce); NEXT_PASS (pass_tracer); - NEXT_PASS (pass_cleanup_eh); /* FIXME: If DCE is not run before checking for uninitialized uses, we may get false warnings (e.g., testsuite/gcc.dg/uninit-5.c).