diff options
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 820e0b654bf..f751c0fc31f 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -2523,7 +2523,7 @@ dump_local_alloc (FILE *file) /* Run old register allocator. Return TRUE if we must exit rest_of_compilation upon return. */ -static void +static unsigned int rest_of_handle_local_alloc (void) { int rebuild_notes; @@ -2566,6 +2566,7 @@ rest_of_handle_local_alloc (void) dump_local_alloc (dump_file); timevar_pop (TV_DUMP); } + return 0; } struct tree_opt_pass pass_local_alloc = |