diff options
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index 558cedd22fc..f2841ae00e8 100644 --- a/gcc/tree-outof-ssa.c +++ b/gcc/tree-outof-ssa.c @@ -2505,7 +2505,7 @@ insert_backedge_copies (void) R. Morgan, ``Building an Optimizing Compiler'', Butterworth-Heinemann, Boston, MA, 1998. pp 176-186. */ -static void +static unsigned int rewrite_out_of_ssa (void) { var_map map; @@ -2548,6 +2548,7 @@ rewrite_out_of_ssa (void) delete_var_map (map); in_ssa_p = false; + return 0; } |