diff options
author | Jan Hubicka <jh@suse.cz> | 2005-05-13 15:57:19 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2005-05-13 13:57:19 +0000 |
commit | 81cfbbc23c53d29b16cae24c98eb0a7d15e2c3fc (patch) | |
tree | 0103e79ff875c3089dc30563ad5cc977bee6de6e /gcc/tree-optimize.c | |
parent | 618656ff893c2741edeb413fb2fa294e867d28cd (diff) | |
download | gcc-81cfbbc23c53d29b16cae24c98eb0a7d15e2c3fc.zip gcc-81cfbbc23c53d29b16cae24c98eb0a7d15e2c3fc.tar.gz gcc-81cfbbc23c53d29b16cae24c98eb0a7d15e2c3fc.tar.bz2 |
builtins-43.c: Use gimple dump instead of generic.
* gcc.dg/builtins-43.c: Use gimple dump instead of generic.
* gcc.dg/fold-xor-?.c: Likewise.
* gcc.dg/pr15784-?.c: Likewise.
* gcc.dg/pr20922-?.c: Likewise.
* gcc.dg/tree-ssa/20050128-1.c: Likewise.
* gcc.dg/tree-ssa/pr17598.c: Likewise.
* gcc.dg/tree-ssa/pr20470.c: Likewise.
* tree-inline.c (copy_body_r): Simplify substituted ADDR_EXPRs.
* tree-optimize.c (pass_gimple): Kill.
(init_tree_optimization_passes): Kill pass_gimple.
* tree-cfg.c (build_tree_cfg): Do verify_stmts to check that we are gimple.
* tree-dump.c (dump_files): Rename .generic to .gimple.*
From-SVN: r99658
Diffstat (limited to 'gcc/tree-optimize.c')
-rw-r--r-- | gcc/tree-optimize.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/tree-optimize.c b/gcc/tree-optimize.c index c3ceb31f..c85830d 100644 --- a/gcc/tree-optimize.c +++ b/gcc/tree-optimize.c @@ -57,25 +57,6 @@ bool in_gimple_form; /* The root of the compilation pass tree, once constructed. */ static struct tree_opt_pass *all_passes, *all_ipa_passes; -/* Pass: dump the gimplified, inlined, functions. */ - -static struct tree_opt_pass pass_gimple = -{ - "gimple", /* name */ - NULL, /* gate */ - NULL, /* execute */ - NULL, /* sub */ - NULL, /* next */ - 0, /* static_pass_number */ - 0, /* tv_id */ - 0, /* properties_required */ - PROP_gimple_any, /* properties_provided */ - 0, /* properties_destroyed */ - 0, /* todo_flags_start */ - TODO_dump_func, /* todo_flags_finish */ - 0 /* letter */ -}; - /* Gate: execute, or not, all of the non-trivial optimizations. */ static bool @@ -340,7 +321,6 @@ init_tree_optimization_passes (void) *p = NULL; p = &all_passes; - NEXT_PASS (pass_gimple); NEXT_PASS (pass_remove_useless_stmts); NEXT_PASS (pass_mudflap_1); NEXT_PASS (pass_lower_cf); |