diff options
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r-- | gcc/tree-ssa-dom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index e003b650c2f..5a28e7830e2 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -235,7 +235,7 @@ free_all_edge_infos (void) every new symbol exposed, its corresponding bit will be set in VARS_TO_RENAME. */ -static void +static unsigned int tree_ssa_dominator_optimize (void) { struct dom_walk_data walk_data; @@ -358,6 +358,7 @@ tree_ssa_dominator_optimize (void) VEC_free (tree, heap, avail_exprs_stack); VEC_free (tree, heap, const_and_copies_stack); VEC_free (tree, heap, stmts_to_rescan); + return 0; } static bool |