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]

[arm] Incorrect arch for arm1026ej-s


The architecture field for the arm1026ej-s was set incorrectly.  This is a 
v5tej core. Attached patch fixes this.

Tested with cross to arm-none-elf.
Applied as obvious.

Paul

2005-01-06  Paul Brook  <paul@codesourcery.com>

 * config/tc-arm.c (arm_cpus): Correct arch field for arm1026ej-s.
? doc/as.info
Index: config/tc-arm.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-arm.c,v
retrieving revision 1.187
diff -u -p -r1.187 tc-arm.c
--- config/tc-arm.c	9 Dec 2004 20:25:22 -0000	1.187
+++ config/tc-arm.c	6 Jan 2005 15:21:23 -0000
@@ -12759,8 +12759,8 @@ static struct arm_cpu_option_table arm_c
   {"arm1020",		ARM_ARCH_V5TE,	 FPU_ARCH_VFP_V2},
   {"arm1020t",		ARM_ARCH_V5T,	 FPU_ARCH_VFP_V1},
   {"arm1020e",		ARM_ARCH_V5TE,	 FPU_ARCH_VFP_V2},
-  {"arm1026ejs",	ARM_ARCH_V5TE,	 FPU_ARCH_VFP_V2},
-  {"arm1026ej-s",	ARM_ARCH_V5TE,	 FPU_ARCH_VFP_V2},
+  {"arm1026ejs",	ARM_ARCH_V5TEJ,	 FPU_ARCH_VFP_V2},
+  {"arm1026ej-s",	ARM_ARCH_V5TEJ,	 FPU_ARCH_VFP_V2},
   {"arm1136js",		ARM_ARCH_V6,     FPU_NONE},
   {"arm1136j-s",	ARM_ARCH_V6,     FPU_NONE},
   {"arm1136jfs",	ARM_ARCH_V6,     FPU_ARCH_VFP_V2},

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