Change that moved assemble_start_function/assemble_end_function to backends missed aarch64. Fix that.
Committed as obvious. gcc/ 2019-05-17 Max Filippov <jcmvb...@gmail.com> * config/aarch64/aarch64.c (aarch64_output_mi_thunk): Call assemble_start_function and assemble_end_function. --- gcc/config/aarch64/aarch64.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 1f904671c690..be5e30ac1025 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -5979,6 +5979,7 @@ aarch64_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED, int this_regno = R0_REGNUM; rtx this_rtx, temp0, temp1, addr, funexp; rtx_insn *insn; + const char *fnname = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk)); if (aarch64_bti_enabled ()) emit_insn (gen_bti_c()); @@ -6046,9 +6047,12 @@ aarch64_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED, insn = get_insns (); shorten_branches (insn); + + assemble_start_function (thunk, fnname); final_start_function (insn, file, 1); final (insn, file, 1); final_end_function (); + assemble_end_function (thunk, fnname); /* Stop pretending to be a post-reload pass. */ reload_completed = 0; -- 2.11.0