From 8586fc660dfb260e1e19ab38140899156e8395a2 Mon Sep 17 00:00:00 2001 From: Thiemo Seufer Date: Tue, 14 May 2002 23:29:23 +0000 Subject: [PATCH] * config/tc_mips.c (s_cpsetup): Fix completely bogus code which had worked sometimes by accident. Fix copy&paste comment. --- gas/ChangeLog | 5 +++++ gas/config/tc-mips.c | 19 ++++++++----------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index d1489a3..59f514a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2002-05-15 Thiemo Seufer + * config/tc_mips.c (s_cpsetup): Fix completely bogus code which had + worked sometimes by accident. Fix copy&paste comment. + +2002-05-15 Thiemo Seufer + * config/tc-mips.c (md_begin): Fix .reginfo and .MIPS.option section alignment for NewABI. Let n32 use .reginfo. Remove useless casts. (mips_elf_final_processing): Let n32 use .reginfo. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 2a59ab4..f112b84 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -11510,7 +11510,7 @@ s_cpsetup (ignore) int icnt = 0; char *sym; - /* If we are not generating SVR4 PIC code, .cpload is ignored. + /* If we are not generating SVR4 PIC code, .cpsetup is ignored. We also need NewABI support. */ if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) { @@ -11567,18 +11567,15 @@ s_cpsetup (ignore) macro_build ((char *) NULL, &icnt, &ex_sym, "lui", "t,u", mips_gp_register, (int) BFD_RELOC_GPREL16); - fix_new (frag_now, (char *) prev_insn_fixp - 4 - frag_now->fr_literal, 0, - NULL, 0, 0, BFD_RELOC_MIPS_SUB); - fix_new (frag_now, (char *) prev_insn_fixp - 4 - frag_now->fr_literal, 0, - NULL, 0, 0, BFD_RELOC_HI16_S); + fix_new (frag_now, prev_insn_where, 0, NULL, 0, 0, BFD_RELOC_MIPS_SUB); + fix_new (frag_now, prev_insn_where, 0, NULL, 0, 0, BFD_RELOC_HI16_S); macro_build ((char *) NULL, &icnt, &ex_sym, "addiu", "t,r,j", mips_gp_register, mips_gp_register, (int) BFD_RELOC_GPREL16); - fix_new (frag_now, (char *) prev_insn_fixp - 4 - frag_now->fr_literal, 0, - NULL, 0, 0, BFD_RELOC_MIPS_SUB); - fix_new (frag_now, (char *) prev_insn_fixp - 4 - frag_now->fr_literal, 0, - NULL, 0, 0, BFD_RELOC_LO16); - macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu", - "d,v,t", mips_gp_register, mips_gp_register, reg1); + fix_new (frag_now, prev_insn_where, 0, NULL, 0, 0, BFD_RELOC_MIPS_SUB); + fix_new (frag_now, prev_insn_where, 0, NULL, 0, 0, BFD_RELOC_LO16); + macro_build ((char *) NULL, &icnt, (expressionS *) NULL, + HAVE_64BIT_ADDRESSES ? "daddu" : "addu", "d,v,t", + mips_gp_register, mips_gp_register, reg1); demand_empty_rest_of_line (); } -- 2.7.4