Commit c634f4ba by Xinliang David Li Committed by Xinliang David Li

Remove TODO_dump_func completely

From-SVN: r186342
parent ed6205b7
2012-04-11 Xinliang David Li <davidxl@google.com>
* tree-passes.h: Remove TODO_dump_func.
* tree-ssa-tail-merge.c (tail_merge_optimize): Remove TODO_dump_func.
* trans-mem.c: Remove TODO_dump_func.
* ira.c: Remove TODO_dump_func.
2012-04-11 H.J. Lu <hongjiu.lu@intel.com> 2012-04-11 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (ix86_option_override_internal): Check * config/i386/i386.c (ix86_option_override_internal): Check
......
...@@ -3814,7 +3814,7 @@ struct rtl_opt_pass pass_ira = ...@@ -3814,7 +3814,7 @@ struct rtl_opt_pass pass_ira =
0, /* properties_provided */ 0, /* properties_provided */
0, /* properties_destroyed */ 0, /* properties_destroyed */
0, /* todo_flags_start */ 0, /* todo_flags_start */
TODO_dump_func /* todo_flags_finish */ 0, /* todo_flags_finish */
} }
}; };
...@@ -3840,6 +3840,6 @@ struct rtl_opt_pass pass_reload = ...@@ -3840,6 +3840,6 @@ struct rtl_opt_pass pass_reload =
0, /* properties_provided */ 0, /* properties_provided */
0, /* properties_destroyed */ 0, /* properties_destroyed */
0, /* todo_flags_start */ 0, /* todo_flags_start */
TODO_dump_func | TODO_ggc_collect /* todo_flags_finish */ TODO_ggc_collect /* todo_flags_finish */
} }
}; };
...@@ -1730,7 +1730,7 @@ struct gimple_opt_pass pass_lower_tm = ...@@ -1730,7 +1730,7 @@ struct gimple_opt_pass pass_lower_tm =
0, /* properties_provided */ 0, /* properties_provided */
0, /* properties_destroyed */ 0, /* properties_destroyed */
0, /* todo_flags_start */ 0, /* todo_flags_start */
TODO_dump_func /* todo_flags_finish */ 0, /* todo_flags_finish */
} }
}; };
...@@ -2543,8 +2543,7 @@ struct gimple_opt_pass pass_tm_mark = ...@@ -2543,8 +2543,7 @@ struct gimple_opt_pass pass_tm_mark =
0, /* properties_destroyed */ 0, /* properties_destroyed */
0, /* todo_flags_start */ 0, /* todo_flags_start */
TODO_update_ssa TODO_update_ssa
| TODO_verify_ssa | TODO_verify_ssa, /* todo_flags_finish */
| TODO_dump_func, /* todo_flags_finish */
} }
}; };
...@@ -2818,8 +2817,7 @@ struct gimple_opt_pass pass_tm_edges = ...@@ -2818,8 +2817,7 @@ struct gimple_opt_pass pass_tm_edges =
0, /* properties_destroyed */ 0, /* properties_destroyed */
0, /* todo_flags_start */ 0, /* todo_flags_start */
TODO_update_ssa TODO_update_ssa
| TODO_verify_ssa | TODO_verify_ssa, /* todo_flags_finish */
| TODO_dump_func, /* todo_flags_finish */
} }
}; };
...@@ -3483,7 +3481,7 @@ struct gimple_opt_pass pass_tm_memopt = ...@@ -3483,7 +3481,7 @@ struct gimple_opt_pass pass_tm_memopt =
0, /* properties_provided */ 0, /* properties_provided */
0, /* properties_destroyed */ 0, /* properties_destroyed */
0, /* todo_flags_start */ 0, /* todo_flags_start */
TODO_dump_func, /* todo_flags_finish */ 0, /* todo_flags_finish */
} }
}; };
...@@ -5035,7 +5033,7 @@ struct simple_ipa_opt_pass pass_ipa_tm = ...@@ -5035,7 +5033,7 @@ struct simple_ipa_opt_pass pass_ipa_tm =
0, /* properties_provided */ 0, /* properties_provided */
0, /* properties_destroyed */ 0, /* properties_destroyed */
0, /* todo_flags_start */ 0, /* todo_flags_start */
TODO_dump_func, /* todo_flags_finish */ 0, /* todo_flags_finish */
}, },
}; };
......
...@@ -245,7 +245,6 @@ struct dump_file_info ...@@ -245,7 +245,6 @@ struct dump_file_info
(PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh | PROP_gimple_lomp) (PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh | PROP_gimple_lomp)
/* To-do flags. */ /* To-do flags. */
#define TODO_dump_func (1 << 0)
#define TODO_ggc_collect (1 << 1) #define TODO_ggc_collect (1 << 1)
#define TODO_verify_ssa (1 << 2) #define TODO_verify_ssa (1 << 2)
#define TODO_verify_flow (1 << 3) #define TODO_verify_flow (1 << 3)
......
...@@ -1592,8 +1592,7 @@ tail_merge_optimize (unsigned int todo) ...@@ -1592,8 +1592,7 @@ tail_merge_optimize (unsigned int todo)
dump_function_to_file (current_function_decl, dump_file, dump_flags); dump_function_to_file (current_function_decl, dump_file, dump_flags);
} }
todo |= (TODO_verify_ssa | TODO_verify_stmts | TODO_verify_flow todo |= (TODO_verify_ssa | TODO_verify_stmts | TODO_verify_flow);
| TODO_dump_func);
mark_sym_for_renaming (gimple_vop (cfun)); mark_sym_for_renaming (gimple_vop (cfun));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment