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] Add cores for M5100 series


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

commit c6e5c03a2c0dfa224a71056ede035476e511f5fc
Author: Robert Suchanek <robert.suchanek@imgtec.com>
Date:   Tue Jul 28 11:26:39 2015 +0100

    Add cores for M5100 series
    
    gas/
    
    	* config/tc-mips.c (mips_cpu_info_table): Add m5100 and m5101 entries.
    	* doc/c-mips.texi: Document m5100 and m5101 for -march=.

Diff:
---
 gas/ChangeLog        | 5 +++++
 gas/config/tc-mips.c | 3 +++
 gas/doc/c-mips.texi  | 2 ++
 3 files changed, 10 insertions(+)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index b0eb854..2ac50cb 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
 2015-07-28  Robert Suchanek  <robert.suchanek@imgtec.com>
 
+	* config/tc-mips.c (mips_cpu_info_table): Add m5100 and m5101 entries.
+	* doc/c-mips.texi: Document m5100 and m5101 for -march=.
+
+2015-07-28  Robert Suchanek  <robert.suchanek@imgtec.com>
+
 	* config/tc-mips.c (mips_cpu_info_table): Add interaptiv entry.
 	* doc/c-mips.text: Document -march=interaptiv.
 
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index 907fafd..45126fe 100644
--- a/gas/config/tc-mips.c
+++ b/gas/config/tc-mips.c
@@ -18668,6 +18668,9 @@ static const struct mips_cpu_info mips_cpu_info_table[] =
   { "1004kf1_1",      0, ASE_DSP | ASE_MT,	ISA_MIPS32R2, CPU_MIPS32R2 },
   /* interaptiv is the new name for 1004kf */
   { "interaptiv",     0, ASE_DSP | ASE_MT,	ISA_MIPS32R2, CPU_MIPS32R2 },
+  /* M5100 family */
+  { "m5100",          0, ASE_MCU,		ISA_MIPS32R5, CPU_MIPS32R5 },
+  { "m5101",          0, ASE_MCU,		ISA_MIPS32R5, CPU_MIPS32R5 },
   /* P5600 with EVA and Virtualization ASEs, other ASEs are optional.  */
   { "p5600",          0, ASE_VIRT | ASE_EVA | ASE_XPA, 	ISA_MIPS32R5, CPU_MIPS32R5 },
 
diff --git a/gas/doc/c-mips.texi b/gas/doc/c-mips.texi
index f2f80d5..8903126 100644
--- a/gas/doc/c-mips.texi
+++ b/gas/doc/c-mips.texi
@@ -370,6 +370,8 @@ m14kec,
 1004kf,
 1004kf1_1,
 interaptiv,
+m5100,
+m5101,
 p5600,
 5kc,
 5kf,


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