diff options
author | Jan Hubicka <jh@suse.cz> | 2007-01-02 22:36:17 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2007-01-02 21:36:17 +0000 |
commit | ed1a2abdb1d015e4136c5a316e7db0e4a886f0d8 (patch) | |
tree | faab110cd64d099e949c3f2a8835e76ece2eed5e /gcc/passes.c | |
parent | de6bd996eb3b39713d4448716c9412b0e5b186c6 (diff) | |
download | gcc-ed1a2abdb1d015e4136c5a316e7db0e4a886f0d8.zip gcc-ed1a2abdb1d015e4136c5a316e7db0e4a886f0d8.tar.gz gcc-ed1a2abdb1d015e4136c5a316e7db0e4a886f0d8.tar.bz2 |
tree-mudflap.c (mf_decl_cache_locals, [...]): Do not add referenced vars.
* tree-mudflap.c (mf_decl_cache_locals, mf_build_check_statement_for):
Do not add referenced vars.
* tree-cfg.c (update_modified_stmts): Do not update when SSA operands
are not active.
* passes.c (init_optimization_passes): Put mudflap_2 after
free_datastructures.
From-SVN: r120358
Diffstat (limited to 'gcc/passes.c')
-rw-r--r-- | gcc/passes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/passes.c b/gcc/passes.c index 4588421..ebf5586 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -476,8 +476,8 @@ init_optimization_passes (void) NEXT_PASS (pass_expand_omp); NEXT_PASS (pass_all_optimizations); NEXT_PASS (pass_warn_function_noreturn); - NEXT_PASS (pass_mudflap_2); NEXT_PASS (pass_free_datastructures); + NEXT_PASS (pass_mudflap_2); NEXT_PASS (pass_free_cfg_annotations); NEXT_PASS (pass_expand); NEXT_PASS (pass_rest_of_compilation); |