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


On Tue, 16 Nov 1999, Richard Earnshaw wrote:

> 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.

Good point. However, my understanding is that the 5e and 5t ISAs are
disjoint, so those flag combinations aren't useful at this time.

Don




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