mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
Add support for ARM920 and ARM920t
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
1999-06-10 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
* config/tc-arm.c (md_parse_option): Add support for ARM920 and
|
||||||
|
ARM920t.
|
||||||
|
|
||||||
1999-06-07 Jakub Jelinek <jj@ultra.linux.cz>
|
1999-06-07 Jakub Jelinek <jj@ultra.linux.cz>
|
||||||
|
|
||||||
* config/tc-sparc.c (md_assemble): Fix up setx, support setsw.
|
* config/tc-sparc.c (md_assemble): Fix up setx, support setsw.
|
||||||
|
@ -6033,7 +6033,9 @@ _("Warning: Use of the 'nv' conditional is deprecated\n"));
|
|||||||
* -m[arm]3 Arm 3 processor
|
* -m[arm]3 Arm 3 processor
|
||||||
* -m[arm]6[xx], Arm 6 processors
|
* -m[arm]6[xx], Arm 6 processors
|
||||||
* -m[arm]7[xx][t][[d]m] Arm 7 processors
|
* -m[arm]7[xx][t][[d]m] Arm 7 processors
|
||||||
* -mstrongarm[110] Arm 8 processors
|
* -m8[10] Arm 8 processors
|
||||||
|
* -m9[20][tdmi] Arm 9 processors
|
||||||
|
* -mstrongarm[110[0]] StrongARM processors
|
||||||
* -mall All (except the ARM1)
|
* -mall All (except the ARM1)
|
||||||
* FP variants:
|
* FP variants:
|
||||||
* -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
|
* -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
|
||||||
@ -6290,7 +6292,11 @@ md_parse_option (c, arg)
|
|||||||
|
|
||||||
case '9':
|
case '9':
|
||||||
if (streq (str, "9"))
|
if (streq (str, "9"))
|
||||||
|
cpu_variant = (cpu_variant & ~ARM_ANY) | ARM_9 | ARM_ARCHv4 | ARM_LONGMUL | ARM_THUMB;
|
||||||
|
else if (streq (str, "920"))
|
||||||
cpu_variant = (cpu_variant & ~ARM_ANY) | ARM_9 | ARM_ARCHv4 | ARM_LONGMUL;
|
cpu_variant = (cpu_variant & ~ARM_ANY) | ARM_9 | ARM_ARCHv4 | ARM_LONGMUL;
|
||||||
|
else if (streq (str, "920t"))
|
||||||
|
cpu_variant = (cpu_variant & ~ARM_ANY) | ARM_9 | ARM_ARCHv4 | ARM_LONGMUL | ARM_THUMB;
|
||||||
else if (streq (str, "9tdmi"))
|
else if (streq (str, "9tdmi"))
|
||||||
cpu_variant = (cpu_variant & ~ARM_ANY) | ARM_9 | ARM_ARCHv4 | ARM_LONGMUL | ARM_THUMB;
|
cpu_variant = (cpu_variant & ~ARM_ANY) | ARM_9 | ARM_ARCHv4 | ARM_LONGMUL | ARM_THUMB;
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user