diff options
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 1918679..066fcec 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -357,7 +357,7 @@ const pass_data pass_data_build_cfg = ( PROP_cfg | PROP_loops ), /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_verify_stmts, /* todo_flags_finish */ + 0, /* todo_flags_finish */ }; class pass_build_cfg : public gimple_opt_pass @@ -8096,7 +8096,7 @@ const pass_data pass_data_split_crit_edges = PROP_no_crit_edges, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_verify_flow, /* todo_flags_finish */ + 0, /* todo_flags_finish */ }; class pass_split_crit_edges : public gimple_opt_pass @@ -8408,7 +8408,7 @@ execute_fixup_cfg (void) { basic_block bb; gimple_stmt_iterator gsi; - int todo = gimple_in_ssa_p (cfun) ? TODO_verify_ssa : 0; + int todo = 0; gcov_type count_scale; edge e; edge_iterator ei; |