diff options
author | David Li <davidxl@google.com> | 2011-06-14 19:39:36 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@gcc.gnu.org> | 2011-06-14 19:39:36 +0000 |
commit | 22c5fa5fbfd9634c3389f845e77ddf8e6ea32f7b (patch) | |
tree | 6784ca7456219fc5f0b50b07b3f96641c6cc9e9c /gcc/recog.c | |
parent | 5d64566169bbc5442121388e4849624b5aa640a1 (diff) | |
download | gcc-22c5fa5fbfd9634c3389f845e77ddf8e6ea32f7b.zip gcc-22c5fa5fbfd9634c3389f845e77ddf8e6ea32f7b.tar.gz gcc-22c5fa5fbfd9634c3389f845e77ddf8e6ea32f7b.tar.bz2 |
dumping cleanup phase 1 -- Removing TODO_dump_func
From-SVN: r175051
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index afe985e..0c26c0d 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -3694,7 +3694,7 @@ struct rtl_opt_pass pass_peephole2 = 0, /* properties_destroyed */ 0, /* todo_flags_start */ TODO_df_finish | TODO_verify_rtl_sharing | - TODO_dump_func /* todo_flags_finish */ + 0 /* todo_flags_finish */ } }; @@ -3720,7 +3720,7 @@ struct rtl_opt_pass pass_split_all_insns = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func /* todo_flags_finish */ + 0 /* todo_flags_finish */ } }; @@ -3750,7 +3750,7 @@ struct rtl_opt_pass pass_split_after_reload = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func /* todo_flags_finish */ + 0 /* todo_flags_finish */ } }; @@ -3794,7 +3794,7 @@ struct rtl_opt_pass pass_split_before_regstack = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func /* todo_flags_finish */ + 0 /* todo_flags_finish */ } }; @@ -3832,8 +3832,7 @@ struct rtl_opt_pass pass_split_before_sched2 = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_verify_flow | - TODO_dump_func /* todo_flags_finish */ + TODO_verify_flow /* todo_flags_finish */ } }; @@ -3864,6 +3863,6 @@ struct rtl_opt_pass pass_split_for_shorten_branches = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func | TODO_verify_rtl_sharing /* todo_flags_finish */ + TODO_verify_rtl_sharing /* todo_flags_finish */ } }; |