2006-12-13 Paul Brook <paul@codesourcery.com>
gas/ * config/tc-arm.c (arm_arch_option_table): Add v7-{a,r,m}. * doc/c-arm.texi: Fix spelling of ARMv7 profile variants.
This commit is contained in:
parent
f2d43c2c03
commit
c450d570b0
3 changed files with 13 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-12-13 Paul Brook <paul@codesourcery.com>
|
||||
|
||||
* config/tc-arm.c (arm_arch_option_table): Add v7-{a,r,m}.
|
||||
* doc/c-arm.texi: Fix spelling of ARMv7 profile variants.
|
||||
|
||||
2006-12-12 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* config/tc-i386.h (WordMem): Document it for 64 bit memory
|
||||
|
|
|
@ -19779,9 +19779,14 @@ static const struct arm_arch_option_table arm_archs[] =
|
|||
{"armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP},
|
||||
{"armv6zkt2", ARM_ARCH_V6ZKT2, FPU_ARCH_VFP},
|
||||
{"armv7", ARM_ARCH_V7, FPU_ARCH_VFP},
|
||||
/* The official spelling of the ARMv7 profile variants is the dashed form.
|
||||
Accept the non-dashed form for compatibility with old toolchains. */
|
||||
{"armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP},
|
||||
{"armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP},
|
||||
{"armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP},
|
||||
{"armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP},
|
||||
{"armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP},
|
||||
{"armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP},
|
||||
{"xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP},
|
||||
{"iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP},
|
||||
{"iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP},
|
||||
|
|
|
@ -155,9 +155,9 @@ names are recognized:
|
|||
@code{armv6z},
|
||||
@code{armv6zk},
|
||||
@code{armv7},
|
||||
@code{armv7a},
|
||||
@code{armv7r},
|
||||
@code{armv7m},
|
||||
@code{armv7-a},
|
||||
@code{armv7-r},
|
||||
@code{armv7-m},
|
||||
@code{iwmmxt}
|
||||
and
|
||||
@code{xscale}.
|
||||
|
|
Loading…
Reference in a new issue