+2001-08-27 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+ * tc_mips.c (load_address): Reflect change to MAX_GPREL_OFFSET.
+ (macro): Reflect change to MAX_GPREL_OFFSET.
+
2001-08-27 Torbjorn Granlund <tege@swox.com>
Staffan Ulfberg <staffanu@swox.se>
Linus Nordberg <linus@swox.se>
lui $reg,<sym> (BFD_RELOC_HI16_S)
addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
If we have an addend, we always use the latter form. */
- if ((valueT) ep->X_add_number >= MAX_GPREL_OFFSET
+ if ((valueT) ep->X_add_number > MAX_GPREL_OFFSET
|| nopic_need_relax (ep->X_add_symbol, 1))
p = NULL;
else
addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
If we have a constant, we need two instructions anyhow,
so we may as well always use the latter form. */
- if ((valueT) offset_expr.X_add_number >= MAX_GPREL_OFFSET
+ if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
|| nopic_need_relax (offset_expr.X_add_symbol, 1))
p = NULL;
else