mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
PowerPC warning on symbol+offset@got
* config/tc-ppc.c (ppc_elf_suffix): Display the relocation operator on GOT reloc warnings/errors.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2019-09-05 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* config/tc-ppc.c (ppc_elf_suffix): Display the relocation
|
||||||
|
operator on GOT reloc warnings/errors.
|
||||||
|
|
||||||
2019-08-27 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
|
2019-08-27 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
|
||||||
|
|
||||||
* config/tc-arm.c (parse_neon_mov): Add check to accept vector
|
* config/tc-arm.c (parse_neon_mov): Add check to accept vector
|
||||||
|
@ -2267,8 +2267,8 @@ ppc_elf_suffix (char **str_p, expressionS *exp_p)
|
|||||||
case BFD_RELOC_LO16_GOTOFF:
|
case BFD_RELOC_LO16_GOTOFF:
|
||||||
case BFD_RELOC_HI16_GOTOFF:
|
case BFD_RELOC_HI16_GOTOFF:
|
||||||
case BFD_RELOC_HI16_S_GOTOFF:
|
case BFD_RELOC_HI16_S_GOTOFF:
|
||||||
as_warn (_("identifier+constant@got means "
|
as_warn (_("symbol+offset@%s means symbol@%s+offset"),
|
||||||
"identifier@got+constant"));
|
ptr->string, ptr->string);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BFD_RELOC_PPC_GOT_TLSGD16:
|
case BFD_RELOC_PPC_GOT_TLSGD16:
|
||||||
@ -2287,7 +2287,7 @@ ppc_elf_suffix (char **str_p, expressionS *exp_p)
|
|||||||
case BFD_RELOC_PPC_GOT_TPREL16_LO:
|
case BFD_RELOC_PPC_GOT_TPREL16_LO:
|
||||||
case BFD_RELOC_PPC_GOT_TPREL16_HI:
|
case BFD_RELOC_PPC_GOT_TPREL16_HI:
|
||||||
case BFD_RELOC_PPC_GOT_TPREL16_HA:
|
case BFD_RELOC_PPC_GOT_TPREL16_HA:
|
||||||
as_bad (_("symbol+offset not supported for got tls"));
|
as_bad (_("symbol+offset@%s not supported"), ptr->string);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user