diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-arc.c | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 95fe0ee..6b5481c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2018-08-06 Claudiu Zissulescu <claziss@synopsys.com> + + * elf32-arc.c (arc_elf_merge_attributes): Handle + Tag_ARC_ATR_version. + 2018-08-05 Alan Modra <amodra@gmail.com> * elf64-ppc.c (ADDI_R12_R11, ADDI_R12_R12, LIS_R12), diff --git a/bfd/elf32-arc.c b/bfd/elf32-arc.c index a48ef0c..aaa2c3b 100644 --- a/bfd/elf32-arc.c +++ b/bfd/elf32-arc.c @@ -578,6 +578,7 @@ arc_elf_merge_attributes (bfd *ibfd, struct bfd_link_info *info) bfd_boolean result = TRUE; const char *sec_name = get_elf_backend_data (ibfd)->obj_attrs_section; char *tagname = NULL; + int offset = 0; /* Skip the linker stubs file. This preserves previous behavior of accepting unknown attributes in the first input file - but @@ -805,6 +806,11 @@ arc_elf_merge_attributes (bfd *ibfd, struct bfd_link_info *info) /* It is handled in Tag_ARC_CPU_base. */ break; + case Tag_ARC_ATR_version: + if (out_attr[i].i == 0) + out_attr[i].i = in_attr[i].i; + break; + default: result = result && _bfd_elf_merge_unknown_attribute_low (ibfd, obfd, i); |