diff options
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/final.c b/gcc/final.c index ad999f7..5cc0a1e 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -244,8 +244,7 @@ init_final (const char *filename ATTRIBUTE_UNUSED) If not overridden for epilogue code, then the function body itself contains return instructions wherever needed. */ void -default_function_pro_epilogue (FILE *file ATTRIBUTE_UNUSED, - HOST_WIDE_INT size ATTRIBUTE_UNUSED) +default_function_pro_epilogue (FILE *) { } @@ -1845,7 +1844,7 @@ final_start_function (rtx_insn *first, FILE *file, } /* First output the function prologue: code to set up the stack frame. */ - targetm.asm_out.function_prologue (file, get_frame_size ()); + targetm.asm_out.function_prologue (file); /* If the machine represents the prologue as RTL, the profiling code must be emitted when NOTE_INSN_PROLOGUE_END is scanned. */ @@ -1918,7 +1917,7 @@ final_end_function (void) /* Finally, output the function epilogue: code to restore the stack frame and return to the caller. */ - targetm.asm_out.function_epilogue (asm_out_file, get_frame_size ()); + targetm.asm_out.function_epilogue (asm_out_file); /* And debug output. */ if (!DECL_IGNORED_P (current_function_decl)) |