diff options
author | Paul Brook <paul@codesourcery.com> | 2008-03-09 15:20:31 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2008-03-09 15:20:31 +0000 |
commit | 15290f0adc1449dda45ff6deba7132f9eb9bbfd7 (patch) | |
tree | 3fcce4f32c4087acfa28284323648d3775b0ec52 /gas/config | |
parent | b1cc4aeb659b69a51a8aee323da92e009c588bb8 (diff) | |
download | gdb-15290f0adc1449dda45ff6deba7132f9eb9bbfd7.zip gdb-15290f0adc1449dda45ff6deba7132f9eb9bbfd7.tar.gz gdb-15290f0adc1449dda45ff6deba7132f9eb9bbfd7.tar.bz2 |
2008-03-09 Paul Brook <paul@codesourcery.com>
gas/
* config/tc-arm.c (arm_cpu_option_table): Add cortex-a9.
* doc/c-arm.texi: Add cortex-a9.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 59a1d77..15367b7 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -20114,6 +20114,9 @@ static const struct arm_cpu_option_table arm_cpus[] = {"cortex-a8", ARM_ARCH_V7A, ARM_FEATURE(0, FPU_VFP_V3 | FPU_NEON_EXT_V1), NULL}, + {"cortex-a9", ARM_ARCH_V7A, ARM_FEATURE(0, FPU_VFP_V3 + | FPU_NEON_EXT_V1), + NULL}, {"cortex-r4", ARM_ARCH_V7R, FPU_NONE, NULL}, {"cortex-m3", ARM_ARCH_V7M, FPU_NONE, NULL}, {"cortex-m1", ARM_ARCH_V6M, FPU_NONE, NULL}, |