From 1a8bf94d3197b82fc41436b2a3043f339536f603 Mon Sep 17 00:00:00 2001 From: bstarynk Date: Thu, 20 Mar 2008 13:22:49 +0000 Subject: 2008-03-20 Basile Starynkevitch MELT branch merged with trunk r133366 * gcc/basilys.c: pass_basilys is now a gimple_opt_pass. * gcc/tree-pass.h: pass_basilys is now a gimple_opt_pass. pass_compiler_probe now declared here. * gcc/passes.c: using new struct-s for passes. * gcc/compiler-probe.h: moved pass_compiler_probe from here to tree-pass.h * gcc/compiler-probe.c: pass_compiler_probe is a gimple_opt_pass. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@133372 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-ssa-ifcombine.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'gcc/tree-ssa-ifcombine.c') diff --git a/gcc/tree-ssa-ifcombine.c b/gcc/tree-ssa-ifcombine.c index eef6f22d2a2..cec5868c636 100644 --- a/gcc/tree-ssa-ifcombine.c +++ b/gcc/tree-ssa-ifcombine.c @@ -605,7 +605,10 @@ gate_ifcombine (void) return 1; } -struct tree_opt_pass pass_tree_ifcombine = { +struct gimple_opt_pass pass_tree_ifcombine = +{ + { + GIMPLE_PASS, "ifcombine", /* name */ gate_ifcombine, /* gate */ tree_ssa_ifcombine, /* execute */ @@ -620,6 +623,6 @@ struct tree_opt_pass pass_tree_ifcombine = { TODO_dump_func | TODO_ggc_collect | TODO_update_ssa - | TODO_verify_ssa, /* todo_flags_finish */ - 0 /* letter */ + | TODO_verify_ssa /* todo_flags_finish */ + } }; -- cgit v1.2.1