* tc-arm.c (arm_cpus, arm_fpus): Allow <cpu>-s as well as <cpu>s

for synthesizable cores.
This commit is contained in:
Richard Earnshaw 2004-09-01 16:16:44 +00:00
parent c8cd9f6c4c
commit 8783612fe2
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-09-01 Richard Earnshaw < reanrsha@arm.com>
* tc-arm.c (arm_cpus, arm_fpus): Allow <cpu>-s as well as <cpu>s
for synthesizable cores.
2004-08-25 Dmitry Diky <diwil@spec.ru>
* config/tc-msp430.c: Clean-up the code.

View File

@ -13280,6 +13280,7 @@ static struct arm_cpu_option_table arm_cpus[] =
{"arm7500fe", ARM_ARCH_V3, FPU_ARCH_FPA},
{"arm7t", ARM_ARCH_V4T, FPU_ARCH_FPA},
{"arm7tdmi", ARM_ARCH_V4T, FPU_ARCH_FPA},
{"arm7tdmi-s", ARM_ARCH_V4T, FPU_ARCH_FPA},
{"arm8", ARM_ARCH_V4, FPU_ARCH_FPA},
{"arm810", ARM_ARCH_V4, FPU_ARCH_FPA},
{"strongarm", ARM_ARCH_V4, FPU_ARCH_FPA},
@ -13299,6 +13300,7 @@ static struct arm_cpu_option_table arm_cpus[] =
{"arm9e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2},
{"arm926ej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2},
{"arm926ejs", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2},
{"arm926ej-s", ARM_ARCH_V5TEJ, FPU_ARCH_VFP_V2},
{"arm946e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2},
{"arm946e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2},
{"arm966e-r0", ARM_ARCH_V5TExP, FPU_ARCH_VFP_V2},
@ -13309,8 +13311,11 @@ static struct arm_cpu_option_table arm_cpus[] =
{"arm1020t", ARM_ARCH_V5T, FPU_ARCH_VFP_V1},
{"arm1020e", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2},
{"arm1026ejs", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2},
{"arm1026ej-s", ARM_ARCH_V5TE, FPU_ARCH_VFP_V2},
{"arm1136js", ARM_ARCH_V6, FPU_NONE},
{"arm1136j-s" ARM_ARCH_V6, FPU_NONE},
{"arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2},
{"arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2},
/* ??? XSCALE is really an architecture. */
{"xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2},
/* ??? iwmmxt is not a processor. */
@ -13399,6 +13404,7 @@ static struct arm_fpu_option_table arm_fpus[] =
{"arm1020t", FPU_ARCH_VFP_V1},
{"arm1020e", FPU_ARCH_VFP_V2},
{"arm1136jfs", FPU_ARCH_VFP_V2},
{"arm1136jf-s", FPU_ARCH_VFP_V2},
{"maverick", FPU_ARCH_MAVERICK},
{NULL, 0}
};