diff options
author | Paul Brook <paul@codesourcery.com> | 2004-10-12 14:17:08 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2004-10-12 14:17:08 +0000 |
commit | 8cb5156692f0f5bf3a24c5d549462bf3c7c71873 (patch) | |
tree | 8324e9ba4463164fe6965b2cd83ae0a471a5b6e4 /gas | |
parent | 06c2338dfb9f8735e688cad31fb8f4e7a4edc171 (diff) | |
download | fsf-binutils-gdb-8cb5156692f0f5bf3a24c5d549462bf3c7c71873.zip fsf-binutils-gdb-8cb5156692f0f5bf3a24c5d549462bf3c7c71873.tar.gz fsf-binutils-gdb-8cb5156692f0f5bf3a24c5d549462bf3c7c71873.tar.bz2 |
2004-10-12 Paul Brook <paul@codesourcery.com>
bfd/
* elf32-arm.h: Support EABI version 4 objects.
binutils/
* readelf.c (decode_ARM_machine_flags): Support EABI version 4.
gas/
* config/tc-arm.c (md_begin): Change EF_ARM_EABI_VER3 to
EF_ARM_EABI_VER4.
(arm_eabis): Ditto.
* doc/c-arm.texi: Document that we actually support -meabi=4, not
-meabi=3.
include/
* elf/arm.h (EF_ARM_EABI_VER4): Define.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 8 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 6 | ||||
-rw-r--r-- | gas/doc/c-arm.texi | 2 |
3 files changed, 12 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index bd4fb11..1c954b8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,11 @@ +2004-10-12 Paul Brook <paul@codesourcery.com> + + * config/tc-arm.c (md_begin): Change EF_ARM_EABI_VER3 to + EF_ARM_EABI_VER4. + (arm_eabis): Ditto. + * doc/c-arm.texi: Document that we actually support -meabi=4, not + -meabi=3. + 2004-10-08 Bob Wilson <bob.wilson@acm.org> * doc/as.texinfo (VTableEntry, VTableInherit): Add "directive" to index diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index e17b037..8af8593 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -11130,7 +11130,7 @@ md_begin (void) flags |= EF_ARM_MAVERICK_FLOAT; break; - case EF_ARM_EABI_VER3: + case EF_ARM_EABI_VER4: /* No additional flags to set. */ break; @@ -12901,11 +12901,11 @@ struct arm_eabi_option_table }; #ifdef OBJ_ELF -/* We only know hot to output GNU and ver 3 (AAELF) formats. */ +/* We only know how to output GNU and ver 4 (AAELF) formats. */ static struct arm_eabi_option_table arm_eabis[] = { {"gnu", EF_ARM_EABI_UNKNOWN}, - {"3", EF_ARM_EABI_VER3}, + {"4", EF_ARM_EABI_VER4}, {NULL, 0} }; #endif diff --git a/gas/doc/c-arm.texi b/gas/doc/c-arm.texi index edd233b..7c68764 100644 --- a/gas/doc/c-arm.texi +++ b/gas/doc/c-arm.texi @@ -243,7 +243,7 @@ conform to. The following values are recognised: @code{gnu} and -@code{3}. +@code{4}. @cindex @code{-EB} command line option, ARM @item -EB |