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

Re: Changes checked in to ARM code


Relatively minor niggle...

As far as I can tell by inspection, this won't allow -marmv5te (or 
-marv5et).


  		case '5':
  		  cpu_variant = (cpu_variant & ~ARM_ANY) | ARM_ARCH_V5;
  		  switch (*++str)
  		    {
  		    case 't': cpu_variant |= ARM_THUMB; break;
+ 		    case 'e': cpu_variant |= ARM_EXT_V5E; break;
  		    case 0:   break;
  		    default:  as_bad (_("Invalid architecture variant -m%s"), arg); 
break;
  		    }
  		  break;

Richard.



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