diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-10-29 16:47:55 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2010-10-29 16:47:55 +0000 |
commit | 3cbd1c0665a545ae6627ed4242c2939cd98f390d (patch) | |
tree | 8b65cc9767ceab99b97281ed03f75f1fb2cf1df0 /binutils | |
parent | 29d4a7cacd9464cd0dc6f7789385b6e713527196 (diff) | |
download | gdb-3cbd1c0665a545ae6627ed4242c2939cd98f390d.zip gdb-3cbd1c0665a545ae6627ed4242c2939cd98f390d.tar.gz gdb-3cbd1c0665a545ae6627ed4242c2939cd98f390d.tar.bz2 |
bfd:
* elf32-tic6x.c (elf32_tic6x_obj_attrs_arg_type): Check
Tag_ABI_compatibility not Tag_compatibility.
(elf32_tic6x_merge_attributes): Update compatibility attribute
name in comment. Return FALSE if merging common attributes fails.
binutils:
* readelf.c (display_tic6x_attribute): Use Tag_ABI_compatibility
not hardcoded 32. Display name of this attribute.
gas:
* doc/c-tic6x.texi (TIC6X Directives): Mention
Tag_ABI_compatibility.
gas/testsuite:
* gas/tic6x/attr-compatibility-directive-1.d,
gas/tic6x/attr-compatibility-directive-1.s,
gas/tic6x/attr-compatibility-directive-2.d,
gas/tic6x/attr-compatibility-directive-2.s: New tests.
include/elf:
* tic6x-attrs.h (Tag_ABI_compatibility): Define.
ld/testsuite:
* ld-tic6x/attr-compatibility-gnu-gnu.d,
ld-tic6x/attr-compatibility-gnu-other.d,
ld-tic6x/attr-compatibility-gnu.s,
ld-tic6x/attr-compatibility-other-gnu.d,
ld-tic6x/attr-compatibility-other-other.d,
ld-tic6x/attr-compatibility-other.s: New tests.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 428d68e..8faa242 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2010-10-29 Joseph Myers <joseph@codesourcery.com> + + * readelf.c (display_tic6x_attribute): Use Tag_ABI_compatibility + not hardcoded 32. Display name of this attribute. + 2010-10-29 H.J. Lu <hongjiu.lu@intel.com> * addr2line.c (process_file): Set BFD_DECOMPRESS. diff --git a/binutils/readelf.c b/binutils/readelf.c index 3c8c020..44feac4 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -10822,11 +10822,10 @@ display_tic6x_attribute (unsigned char * p) } return p; - case 32: - /* Tag_compatibility - treated as generic by binutils for now - although not currently specified for C6X. */ + case Tag_ABI_compatibility: val = read_uleb128 (p, &len); p += len; + printf (" Tag_ABI_compatibility: "); printf (_("flag = %d, vendor = %s\n"), val, p); p += strlen ((char *) p) + 1; return p; |