+2011-01-16 Richard Sandiford <rdsandiford@googlemail.com>
+
+ * config/mips/mips.c (mips_classify_symbol): Don't return
+ SYMBOL_PC_RELATIVE for nonlocal labels.
+
2011-01-15 Eric Botcazou <ebotcazou@adacore.com>
* config/sparc/sol2-bi.h (CC1_SPEC): Fix typo.
if (GET_CODE (x) == LABEL_REF)
{
- /* LABEL_REFs are used for jump tables as well as text labels.
- Only return SYMBOL_PC_RELATIVE if we know the label is in
- the text section. */
- if (TARGET_MIPS16_SHORT_JUMP_TABLES)
+ /* Only return SYMBOL_PC_RELATIVE if we are generating MIPS16
+ code and if we know that the label is in the current function's
+ text section. LABEL_REFs are used for jump tables as well as
+ text labels, so we must check whether jump tables live in the
+ text section. */
+ if (TARGET_MIPS16_SHORT_JUMP_TABLES
+ && !LABEL_REF_NONLOCAL_P (x))
return SYMBOL_PC_RELATIVE;
if (TARGET_ABICALLS && !TARGET_ABSOLUTE_ABICALLS)