diff options
Diffstat (limited to 'gcc/tree-ssa-uncprop.c')
-rw-r--r-- | gcc/tree-ssa-uncprop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-uncprop.c b/gcc/tree-ssa-uncprop.c index c79b120ce3d..2271613c3eb 100644 --- a/gcc/tree-ssa-uncprop.c +++ b/gcc/tree-ssa-uncprop.c @@ -382,7 +382,7 @@ record_equiv (tree value, tree equivalence) /* Main driver for un-cprop. */ -static void +static unsigned int tree_ssa_uncprop (void) { struct dom_walk_data walk_data; @@ -441,7 +441,7 @@ tree_ssa_uncprop (void) } } } - + return 0; } |