New ARC linker testsuite failure
Andrew Burgess
andrew.burgess@embecosm.com
Tue Apr 19 16:46:00 GMT 2016
More information about the Binutils mailing list
Tue Apr 19 16:46:00 GMT 2016
- Previous message (by thread): New ARC linker testsuite failure
- Next message (by thread): New ARC linker testsuite failure
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
* Claudiu Zissulescu <Claudiu.Zissulescu@synopsys.com> [2016-04-15 09:11:53 +0000]: > Issue confirmed. The fmul opcode is overlapping with nps400' x* > opcodes. Andrew needs to make a better filter in the disassembler > for those cases. > > Andrew please confirm if you will fix this issue, or I need to > handle it. I believe the patch below is all that is required to resolve this issue. OK to apply? Thanks, Andrew --- arc: Fix relocation formula for ARC_NPS_CMEM16 relocation The ME modifier was missing from the relocation formula for the ARC_NPS_CMEM16 relocation, and as such the relocation would not patch correctly on little endian targets. include/ChangeLog: * elf/arc-reloc.def (ARC_NPS_CMEM16): Add ME modifier to formula. --- include/ChangeLog | 4 ++++ include/elf/arc-reloc.def | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/elf/arc-reloc.def b/include/elf/arc-reloc.def index 10703d2..faa1389 100644 --- a/include/elf/arc-reloc.def +++ b/include/elf/arc-reloc.def @@ -496,4 +496,4 @@ ARC_RELOC_HOWTO(ARC_NPS_CMEM16, 78, \ 16, \ replace_bits16, \ dont, \ - ( S + A )) + ( ME ( S + A ))) -- 2.5.1
- Previous message (by thread): New ARC linker testsuite failure
- Next message (by thread): New ARC linker testsuite failure
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list