This is the mail archive of the binutils@sources.redhat.com 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: Add MIPS cpu names for gas


Hello,

This patch adds the cpu name for the 24k to gas's cpu_info_table.

David.

Index: ChangeLog
===================================================================
RCS file: /cvs/uberbaum/gas/ChangeLog,v
retrieving revision 1.2529
diff -c -3 -r1.2529 ChangeLog
*** ChangeLog	9 May 2005 14:20:44 -0000	1.2529
--- ChangeLog	9 May 2005 15:08:18 -0000
***************
*** 1,3 ****
--- 1,8 ----
+ 2005-05-09  David Ung  <davidu@mips.com>
+ 
+ 	* config/tc-mips.c (mips_cpu_info_table): Add cpu names m4k, 24k,
+ 	24kc, 24kf and 24kfx under MIPS32 release 2.
+ 
  2005-05-09  H.J. Lu  <hongjiu.lu@intel.com>
  
  	PR 936
cvs diff: Diffing config
Index: config/tc-mips.c
===================================================================
RCS file: /cvs/uberbaum/gas/config/tc-mips.c,v
retrieving revision 1.312
diff -c -3 -r1.312 tc-mips.c
*** config/tc-mips.c	5 May 2005 09:12:59 -0000	1.312
--- config/tc-mips.c	9 May 2005 15:08:23 -0000
***************
*** 13778,13783 ****
--- 13778,13790 ----
    { "4km",            0,      ISA_MIPS32,     CPU_MIPS32 },
    { "4kp",            0,      ISA_MIPS32,     CPU_MIPS32 },
  
+   /* MIPS32 Release 2 */
+   { "m4k",            0,      ISA_MIPS32R2,   CPU_MIPS32R2 },
+   { "24k",            0,      ISA_MIPS32R2,   CPU_MIPS32R2 },
+   { "24kc",           0,      ISA_MIPS32R2,   CPU_MIPS32R2 },
+   { "24kf",           0,      ISA_MIPS32R2,   CPU_MIPS32R2 },
+   { "24kx",           0,      ISA_MIPS32R2,   CPU_MIPS32R2 },
+ 
    /* MIPS 64 */
    { "5kc",            0,      ISA_MIPS64,     CPU_MIPS64 },
    { "20kc",           0,      ISA_MIPS64,     CPU_MIPS64 },



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