diff options
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r-- | gas/config/tc-arm.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index deb78ce..136e04e 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -22364,27 +22364,28 @@ static const struct arm_cpu_option_table arm_cpus[] = {"arm1136j-s", ARM_ARCH_V6, FPU_NONE, NULL}, {"arm1136jfs", ARM_ARCH_V6, FPU_ARCH_VFP_V2, "ARM1136JF-S"}, {"arm1136jf-s", ARM_ARCH_V6, FPU_ARCH_VFP_V2, NULL}, - {"mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, NULL}, - {"mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, NULL}, + {"mpcore", ARM_ARCH_V6K, FPU_ARCH_VFP_V2, "MPCore"}, + {"mpcorenovfp", ARM_ARCH_V6K, FPU_NONE, "MPCore"}, {"arm1156t2-s", ARM_ARCH_V6T2, FPU_NONE, NULL}, {"arm1156t2f-s", ARM_ARCH_V6T2, FPU_ARCH_VFP_V2, NULL}, {"arm1176jz-s", ARM_ARCH_V6ZK, FPU_NONE, NULL}, {"arm1176jzf-s", ARM_ARCH_V6ZK, FPU_ARCH_VFP_V2, NULL}, - {"cortex-a5", ARM_ARCH_V7A, FPU_NONE, NULL}, + {"cortex-a5", ARM_ARCH_V7A, FPU_NONE, "Cortex-A5"}, {"cortex-a8", ARM_ARCH_V7A, ARM_FEATURE (0, FPU_VFP_V3 | FPU_NEON_EXT_V1), - NULL}, + "Cortex-A8"}, {"cortex-a9", ARM_ARCH_V7A, ARM_FEATURE (0, FPU_VFP_V3 | FPU_NEON_EXT_V1), - NULL}, + "Cortex-A9"}, {"cortex-a15", ARM_ARCH_V7A, FPU_ARCH_NEON_VFP_V4, "Cortex-A15"}, - {"cortex-r4", ARM_ARCH_V7R, FPU_NONE, NULL}, - {"cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16, NULL}, - {"cortex-m4", ARM_ARCH_V7EM, FPU_NONE, NULL}, - {"cortex-m3", ARM_ARCH_V7M, FPU_NONE, NULL}, - {"cortex-m1", ARM_ARCH_V6M, FPU_NONE, NULL}, - {"cortex-m0", ARM_ARCH_V6M, FPU_NONE, NULL}, + {"cortex-r4", ARM_ARCH_V7R, FPU_NONE, "Cortex-R4"}, + {"cortex-r4f", ARM_ARCH_V7R, FPU_ARCH_VFP_V3D16, + "Cortex-R4F"}, + {"cortex-m4", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M4"}, + {"cortex-m3", ARM_ARCH_V7M, FPU_NONE, "Cortex-M3"}, + {"cortex-m1", ARM_ARCH_V6M, FPU_NONE, "Cortex-M1"}, + {"cortex-m0", ARM_ARCH_V6M, FPU_NONE, "Cortex-M0"}, /* ??? XSCALE is really an architecture. */ {"xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL}, /* ??? iwmmxt is not a processor. */ |