From 212dddd37fee2f99206cc82a89e7e5ad68ae4fd7 Mon Sep 17 00:00:00 2001 From: rguenth Date: Wed, 21 Mar 2012 08:02:21 +0000 Subject: 2012-03-21 Richard Guenther * Makefile.in (cfgexpand.o): Add $(REGS_H) and $(INTEGRATE_H) dependencies. * cfgexpand.c (gimple_expand_cfg): Fold in pass_init_function, pass_jump, pass_initial_value_sets and pass_unshare_all_rtl. * passes.c (init_optimization_passes): Remove pass_init_function, pass_jump, pass_initial_value_sets and pass_unshare_all_rtl. * tree-pass.h (pass_init_function): Remove. (pass_jump): Remove. (pass_initial_value_sets): Remove. (pass_unshare_all_rtl): Remove. * integrate.c (pass_initial_value_sets): Remove. * emit-rtl.c (pass_unshare_all_rtl): Remove. * tree.h (init_function_for_compilation): Remove. * function.c (init_function_for_compilation): Remove. (pass_init_function): Remove. * cfgcleanup.c (rest_of_handle_jump): Remove. (pass_jump): Remove. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185598 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/emit-rtl.c | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'gcc/emit-rtl.c') diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index fd19fb6ace0..4f809820b78 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -2475,25 +2475,6 @@ unshare_all_rtl (void) return 0; } -struct rtl_opt_pass pass_unshare_all_rtl = -{ - { - RTL_PASS, - "unshare", /* name */ - NULL, /* gate */ - unshare_all_rtl, /* execute */ - NULL, /* sub */ - NULL, /* next */ - 0, /* static_pass_number */ - TV_NONE, /* tv_id */ - 0, /* properties_required */ - 0, /* properties_provided */ - 0, /* properties_destroyed */ - 0, /* todo_flags_start */ - TODO_verify_rtl_sharing /* todo_flags_finish */ - } -}; - /* Check that ORIG is not marked when it should not be and mark ORIG as in use, Recursively does the same for subexpressions. */ -- cgit v1.2.1