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/config/tc-arm.c | |
parent | 7c31ae1375663be74994b1f5fb76b73fd9632cef (diff) | |
download | gdb-4a58c4bdc96a4d10cbb889127e75245bff7352f8.zip gdb-4a58c4bdc96a4d10cbb889127e75245bff7352f8.tar.gz gdb-4a58c4bdc96a4d10cbb889127e75245bff7352f8.tar.bz2 |
* 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/config/tc-arm.c')
-rw-r--r-- | gas/config/tc-arm.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 78a98be..eed48f1 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}, |