diff options
author | Thomas Preud'homme <thomas.preudhomme@arm.com> | 2016-11-04 16:24:59 +0000 |
---|---|---|
committer | Thomas Preud'homme <thomas.preudhomme@arm.com> | 2016-11-04 16:24:59 +0000 |
commit | b19ea8d28b1c06c2973738c1cda076f895ac3ad0 (patch) | |
tree | ef82fa4a6d433773e413ab3c75a0320bd67cdd42 /gas | |
parent | ce1b0a458aed5fea182c8eb4a8cf1161d1c0a20f (diff) | |
download | fsf-binutils-gdb-b19ea8d28b1c06c2973738c1cda076f895ac3ad0.zip fsf-binutils-gdb-b19ea8d28b1c06c2973738c1cda076f895ac3ad0.tar.gz fsf-binutils-gdb-b19ea8d28b1c06c2973738c1cda076f895ac3ad0.tar.bz2 |
Add support for ARM Cortex-M33 processor
2016-11-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
gas/
* config/tc-arm.c (cortex-m33): Declare new processor.
* doc/c-arm.texi (-mcpu ARM command line option): Document new
Cortex-M33 processor.
* NEWS: Mention ARM Cortex-M33 support.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/NEWS | 2 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 2 | ||||
-rw-r--r-- | gas/doc/c-arm.texi | 1 |
4 files changed, 11 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 4e98cda..e83132f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,12 @@ 2016-11-04 Thomas Preud'homme <thomas.preudhomme@arm.com> + * config/tc-arm.c (cortex-m33): Declare new processor. + * doc/c-arm.texi (-mcpu ARM command line option): Document new + Cortex-M33 processor. + * NEWS: Mention ARM Cortex-M33 support. + +2016-11-04 Thomas Preud'homme <thomas.preudhomme@arm.com> + * config/tc-arm.c (cortex-m23): Declare new processor. * doc/c-arm.texi (-mcpu ARM command line option): Document new Cortex-M23 processor. @@ -2,7 +2,7 @@ * Add support for the RISC-V architecture. -* Add support for the ARM Cortex-M23 processor. +* Add support for the ARM Cortex-M23 and Cortex-M33 processors. Changes in 2.27: diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 011701b..9a12bcc 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -25459,6 +25459,8 @@ static const struct arm_cpu_option_table arm_cpus[] = ARM_CPU_OPT ("cortex-r8", ARM_ARCH_V7R_IDIV, FPU_ARCH_VFP_V3D16, "Cortex-R8"), + ARM_CPU_OPT ("cortex-m33", ARM_ARCH_V8M_MAIN_DSP, + FPU_NONE, "Cortex-M33"), ARM_CPU_OPT ("cortex-m23", ARM_ARCH_V8M_BASE, FPU_NONE, "Cortex-M23"), ARM_CPU_OPT ("cortex-m7", ARM_ARCH_V7EM, FPU_NONE, "Cortex-M7"), diff --git a/gas/doc/c-arm.texi b/gas/doc/c-arm.texi index f08f6eb..547950a 100644 --- a/gas/doc/c-arm.texi +++ b/gas/doc/c-arm.texi @@ -131,6 +131,7 @@ recognized: @code{cortex-r5}, @code{cortex-r7}, @code{cortex-r8}, +@code{cortex-m33}, @code{cortex-m23}, @code{cortex-m7}, @code{cortex-m4}, |