diff options
Diffstat (limited to 'gcc/passes.c')
-rw-r--r-- | gcc/passes.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/passes.c b/gcc/passes.c index e2f0676..db6128e 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -320,7 +320,7 @@ struct tree_opt_pass pass_postreload = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_ggc_collect, /* todo_flags_finish */ + TODO_ggc_collect | TODO_verify_rtl_sharing, /* todo_flags_finish */ 0 /* letter */ }; @@ -959,6 +959,8 @@ execute_function_todo (void *data) verify_stmts (); if (flags & TODO_verify_loops) verify_loop_closed_ssa (); + if (flags & TODO_verify_rtl_sharing) + verify_rtl_sharing (); #endif cfun->last_verified = flags & TODO_verify_all; |