diff options
author | Nick Clifton <nickc@redhat.com> | 2000-04-24 23:57:30 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-04-24 23:57:30 +0000 |
commit | adcf07e61499b211183ca7135933a026764d4561 (patch) | |
tree | 5cd6e0ea32d9252e11549a19e473d6425819c464 /gas/config | |
parent | c4479208948575d5fc9e14a555e19f19f325a44e (diff) | |
download | gdb-adcf07e61499b211183ca7135933a026764d4561.zip gdb-adcf07e61499b211183ca7135933a026764d4561.tar.gz gdb-adcf07e61499b211183ca7135933a026764d4561.tar.bz2 |
Document behaviour of .align 0 for ARM targets.
Remove incomplete v5e code from tc-arm.c
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index f4f7398..109de30 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -52,7 +52,6 @@ #define ARM_HALFWORD 0x00000020 /* allow half word loads */ #define ARM_THUMB 0x00000040 /* allow BX instruction */ #define ARM_EXT_V5 0x00000080 /* allow CLZ etc */ -#define ARM_EXT_V5E 0x00000200 /* "El Segundo" */ /* Architectures are the sum of the base and extensions. */ #define ARM_ARCH_V4 (ARM_7 | ARM_LONGMUL | ARM_HALFWORD) @@ -6748,7 +6747,6 @@ md_parse_option (c, arg) 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); |