diff options
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 9bf4086f5ae..8f20f87ce09 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -2084,7 +2084,7 @@ struct tree_opt_pass pass_duplicate_computed_gotos = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func, /* todo_flags_finish */ + TODO_dump_func | TODO_verify_rtl_sharing,/* todo_flags_finish */ 0 /* letter */ }; @@ -2234,7 +2234,7 @@ struct tree_opt_pass pass_reorder_blocks = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func, /* todo_flags_finish */ + TODO_dump_func | TODO_verify_rtl_sharing,/* todo_flags_finish */ 'B' /* letter */ }; @@ -2272,7 +2272,7 @@ struct tree_opt_pass pass_partition_blocks = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func, /* todo_flags_finish */ + TODO_dump_func | TODO_verify_rtl_sharing,/* todo_flags_finish */ 0 /* letter */ }; |