Changes checked in to ARM code
Richard Earnshaw
rearnsha@arm.com
Tue Nov 16 03:30:00 GMT 1999
More information about the Binutils mailing list
Tue Nov 16 03:30:00 GMT 1999
- Previous message (by thread): Changes checked in to ARM code
- Next message (by thread): Changes checked in to ARM code
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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.
- Previous message (by thread): Changes checked in to ARM code
- Next message (by thread): Changes checked in to ARM code
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list