diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index a50bfef..a17cbe6 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2013-06-19 Greta Yorsh <Greta.Yorsh@arm.com> + + * config/tc-arm.c (arm_cpus): Add support for Cortex-A12. + 2013-06-18 Richard Sandiford <rdsandiford@googlemail.com> * config/tc-mips.c (md_shortopts, options, md_longopts) diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 3a34a5f..b327a1b 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -23967,6 +23967,9 @@ static const struct arm_cpu_option_table arm_cpus[] = ARM_FEATURE (0, FPU_VFP_V3 | FPU_NEON_EXT_V1), "Cortex-A9"), + ARM_CPU_OPT ("cortex-a12", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT, + FPU_ARCH_NEON_VFP_V4, + "Cortex-A12"), ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7A_IDIV_MP_SEC_VIRT, FPU_ARCH_NEON_VFP_V4, "Cortex-A15"), |