From 565d8a378f62e7c46273908cbd370873a218808b Mon Sep 17 00:00:00 2001 From: Geoffrey Keating Date: Wed, 18 May 2005 20:23:26 +0000 Subject: [PATCH] * tree-cfg.c (pass_remove_useless): This pass works on trees. From-SVN: r99924 --- gcc/ChangeLog | 4 ++++ gcc/tree-cfg.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 47332e1b19a3..5e0b4534b2ec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-05-18 Geoffrey Keating + + * tree-cfg.c (pass_remove_useless): This pass works on trees. + 2005-05-18 Richard Guenther * tree.c (build1_stat): Don't try to handle two-operand diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index c1419827e1fb..1de855a55dee 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -1992,8 +1992,8 @@ struct tree_opt_pass pass_remove_useless_stmts = NULL, /* next */ 0, /* static_pass_number */ 0, /* tv_id */ - PROP_gimple_any, /* properties_required */ - 0, /* properties_provided */ + PROP_gimple_any | PROP_trees, /* properties_required */ + PROP_trees, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ TODO_dump_func, /* todo_flags_finish */