diff options
author | Nick Clifton <nickc@redhat.com> | 2011-01-18 14:10:44 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-01-18 14:10:44 +0000 |
commit | 4a58c4bdc96a4d10cbb889127e75245bff7352f8 (patch) | |
tree | 0f96b5e4206066a9e62589611e10de262814fe59 /gas | |
parent | 7c31ae1375663be74994b1f5fb76b73fd9632cef (diff) | |
download | binutils-4a58c4bdc96a4d10cbb889127e75245bff7352f8.tar.gz binutils-4a58c4bdc96a4d10cbb889127e75245bff7352f8.tar.bz2 binutils-4a58c4bdc96a4d10cbb889127e75245bff7352f8.zip |
* config/tc-arm.c (arm_cpus): Add Faraday ARMv5TE compatible
cores: fa606te, fa616te, fmp626. Modify the VFP of fa626te.
* doc/c-arm.texi (ARM Options): Add -mcpu={fa606te, fa616te,
fmp626} options.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 7 | ||||
-rw-r--r-- | gas/doc/c-arm.texi | 3 |
3 files changed, 15 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1b7bf80023a..30d7609c722 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2011-01-18 Mingfeng Wu <mingfeng@faraday-tech.com> + + * config/tc-arm.c (arm_cpus): Add Faraday ARMv5TE compatible + cores: fa606te, fa616te, fmp626. Modify the VFP of fa626te. + * doc/c-arm.texi (ARM Options): Add -mcpu={fa606te, fa616te, + fmp626} options. + 2011-01-18 Nick Clifton <nickc@redhat.com> PR gas/12390 diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 78a98bec20d..eed48f1b29c 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -1,6 +1,6 @@ /* tc-arm.c -- Assemble for the ARM Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, - 2004, 2005, 2006, 2007, 2008, 2009, 2010 + 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org) Modified by David Taylor (dtaylor@armltd.co.uk) @@ -22600,7 +22600,10 @@ static const struct arm_cpu_option_table arm_cpus[] = {"arm1022e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL}, {"arm1026ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, "ARM1026EJ-S"}, {"arm1026ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2, NULL}, - {"fa626te", ARM_ARCH_V5TE, FPU_NONE, NULL}, + {"fa606te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL}, + {"fa616te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL}, + {"fa626te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL}, + {"fmp626", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL}, {"fa726te", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2, NULL}, {"arm1136js", ARM_ARCH_V6, FPU_NONE, "ARM1136J-S"}, {"arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL}, diff --git a/gas/doc/c-arm.texi b/gas/doc/c-arm.texi index 79a37225b6a..a5a88ba1d62 100644 --- a/gas/doc/c-arm.texi +++ b/gas/doc/c-arm.texi @@ -102,7 +102,10 @@ recognized: @code{arm1020e}, @code{arm1022e}, @code{arm1026ej-s}, +@code{fa606te} (Faraday FA606TE processor), +@code{fa616te} (Faraday FA616TE processor), @code{fa626te} (Faraday FA626TE processor), +@code{fmp626} (Faraday FMP626 processor), @code{fa726te} (Faraday FA726TE processor), @code{arm1136j-s}, @code{arm1136jf-s}, |