This is the mail archive of the binutils@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]

[PATCH][GAS][ARM] Add support for Cortex-R8


Hi there,

This patch adds support for the recently announced ARM core Cortex-R8.
Passes binutils regression tests.
Is this OK?

Cheers,
Andre

gas/ChangeLog:

2016-02-29  Andre Vieira  <andre.simoesdiasvieira@arm.com>

     * config/tc-arm.c (arm_cpus): Add cortex-r8.
     * doc/c-arm.texi: Add cortex-r8.
>From 264466254e45d286eb86b848e35887258f8446f7 Mon Sep 17 00:00:00 2001
From: Andre Simoes Dias Vieira <andsim01@arm.com>
Date: Tue, 26 Jan 2016 17:40:52 +0000
Subject: [PATCH] Added support for Cortex-R8.

---
 gas/config/tc-arm.c | 3 +++
 gas/doc/c-arm.texi  | 1 +
 2 files changed, 4 insertions(+)

diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index 4a16267f5396b4f46eb19fb655bbe7614cd52cdd..13d8960777f5c8b484dd912e32e67235dfb89f65 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -24942,6 +24942,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 886b02496e8192d8daad2bd6f5ce70be65629d64..1983ed0f7ba1bdf6d9817bb409ad7afd8582e4c0 100644
--- a/gas/doc/c-arm.texi
+++ b/gas/doc/c-arm.texi
@@ -128,6 +128,7 @@ recognized:
 @code{cortex-r4f},
 @code{cortex-r5},
 @code{cortex-r7},
+@code{cortex-r8},
 @code{cortex-m7},
 @code{cortex-m4},
 @code{cortex-m3},
-- 
1.9.1


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