diff options
Diffstat (limited to 'gcc/tree-stdarg.c')
-rw-r--r-- | gcc/tree-stdarg.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-stdarg.c b/gcc/tree-stdarg.c index b49526d..4a67bc8 100644 --- a/gcc/tree-stdarg.c +++ b/gcc/tree-stdarg.c @@ -603,7 +603,7 @@ gate_optimize_stdarg (void) /* Entry point to the stdarg optimization pass. */ -static void +static unsigned int execute_optimize_stdarg (void) { basic_block bb; @@ -903,6 +903,7 @@ finish: fprintf (dump_file, "%d", cfun->va_list_fpr_size); fputs (" FPR units.\n", dump_file); } + return 0; } |