mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 17:40:49 +00:00
Only clear cpu part when specifying 'xscale' cpu (don't change the fpu part)
This commit is contained in:
@@ -8988,7 +8988,8 @@ md_parse_option (c, arg)
|
||||
|
||||
case 'x':
|
||||
if (streq (str, "xscale"))
|
||||
cpu_variant = ARM_9 | ARM_ARCH_XSCALE;
|
||||
cpu_variant = (cpu_variant & ~ARM_ANY)
|
||||
| ARM_9 | ARM_ARCH_XSCALE;
|
||||
else
|
||||
goto bad;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user