From ad3c7a5ac51e18da5b2d6bf79b09384e14a3ae9c Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Mon, 30 Dec 2013 20:38:07 -0500 Subject: [PATCH 029/159] FIXME: fixes for 'final' --- gcc/config/i386/i386.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index bef60e4..73150c2 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -36457,10 +36457,10 @@ x86_output_mi_thunk (FILE *file, /* Emit just enough of rest_of_compilation to get the insns emitted. Note that use_thunk calls assemble_start_function et al. */ - tmp = get_insns (); - shorten_branches (tmp); - final_start_function (tmp, file, 1); - final (tmp, file, 1); + rtx_base_insn insn = get_insns (); + shorten_branches (insn); + final_start_function (insn, file, 1); + final (insn, file, 1); final_end_function (); } -- 1.7.11.7