This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] [ARM] Add support for Cortex-R8


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=5f474010712c856bc3c8d470db5f69c2d216f235

commit 5f474010712c856bc3c8d470db5f69c2d216f235
Author: Thomas Preud'homme <thomas.preudhomme@arm.com>
Date:   Mon Mar 7 17:31:57 2016 +0000

    [ARM] Add support for Cortex-R8
    
    2016-03-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
    
    gas/
        * config/tc-arm.c (arm_cpus): Add cortex-r8.
        * doc/c-arm.texi: Add cortex-r8.

Diff:
---
 gas/ChangeLog       | 5 +++++
 gas/config/tc-arm.c | 3 +++
 gas/doc/c-arm.texi  | 1 +
 3 files changed, 9 insertions(+)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index b04c09c..ca58d4d 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2016-03-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
+
+	* config/tc-arm.c (arm_cpus): Add cortex-r8.
+	* doc/c-arm.texi: Add cortex-r8.
+
 2016-03-07  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
 
 	* config/tc-arc.c: Add const qualifiers.
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index 6930220..fd97605 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -25241,6 +25241,9 @@ static const struct arm_cpu_option_table arm_cpus[] =
   ARM_CPU_OPT ("cortex-r7",	ARM_ARCH_V7R_IDIV,
 						 FPU_ARCH_VFP_V3D16,
 								  "Cortex-R7"),
+  ARM_CPU_OPT ("cortex-r8",	ARM_ARCH_V7R_IDIV,
+						 FPU_ARCH_VFP_V3D16,
+								  "Cortex-R8"),
   ARM_CPU_OPT ("cortex-m7",	ARM_ARCH_V7EM,	 FPU_NONE,	  "Cortex-M7"),
   ARM_CPU_OPT ("cortex-m4",	ARM_ARCH_V7EM,	 FPU_NONE,	  "Cortex-M4"),
   ARM_CPU_OPT ("cortex-m3",	ARM_ARCH_V7M,	 FPU_NONE,	  "Cortex-M3"),
diff --git a/gas/doc/c-arm.texi b/gas/doc/c-arm.texi
index 2a52cac..7e4863e 100644
--- a/gas/doc/c-arm.texi
+++ b/gas/doc/c-arm.texi
@@ -129,6 +129,7 @@ recognized:
 @code{cortex-r4f},
 @code{cortex-r5},
 @code{cortex-r7},
+@code{cortex-r8},
 @code{cortex-m7},
 @code{cortex-m4},
 @code{cortex-m3},


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]