From 45d05c5fecb93383a55db7c024e3ccb3137fe4a5 Mon Sep 17 00:00:00 2001 From: "Maciej W. Rozycki" <macro@codesourcery.com> Date: Wed, 9 May 2012 09:19:44 +0000 Subject: [PATCH] mips.c (mips16_gp_pseudo_reg): Remove line information from the instruction produced. * config/mips/mips.c (mips16_gp_pseudo_reg): Remove line information from the instruction produced. From-SVN: r187319 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 86a59eff8467..8479abb029ac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-05-09 Maciej W. Rozycki <macro@codesourcery.com> + + * config/mips/mips.c (mips16_gp_pseudo_reg): Remove line + information from the instruction produced. + 2012-05-09 Richard Guenther <rguenther@suse.de> * stor-layout.c (bit_from_pos): Document. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 239d6f5a7608..2e6c3001178d 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -2622,7 +2622,8 @@ mips16_gp_pseudo_reg (void) scan = NEXT_INSN (scan); insn = gen_load_const_gp (cfun->machine->mips16_gp_pseudo_rtx); - emit_insn_after (insn, scan); + insn = emit_insn_after (insn, scan); + INSN_LOCATOR (insn) = 0; pop_topmost_sequence (); } -- GitLab