* config/tc-mips.c (mips_ip): Re-allow %hi() op for non-ELF assembler.

This commit is contained in:
Thiemo Seufer 2001-11-15 09:50:00 +00:00
parent f9f32305f7
commit 645dc66c72
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2001-11-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
* config/tc-mips.c (mips_ip): Re-allow %hi() op for non-ELF assembler.
2001-11-15 Alan Modra <amodra@bigpond.net.au>
* frags.c (frag_grow): Revert last change.

View File

@ -8374,14 +8374,14 @@ mips_ip (str, ip)
if (imm_expr.X_op == O_constant)
imm_expr.X_add_number =
(imm_expr.X_add_number >> 16) & 0xffff;
#ifdef OBJ_ELF
else if (c == S_EX_HIGHEST)
*imm_reloc = BFD_RELOC_MIPS_HIGHEST;
else if (c == S_EX_HI)
{
*imm_reloc = BFD_RELOC_HI16_S;
imm_unmatched_hi = true;
}
#ifdef OBJ_ELF
else if (c == S_EX_HIGHEST)
*imm_reloc = BFD_RELOC_MIPS_HIGHEST;
else if (c == S_EX_GP_REL)
{
/* This occurs in NewABI only. */