Remove redundant bit from "fa" and "da" flags

This commit is contained in:
Nick Clifton 2001-01-19 04:35:29 +00:00
parent ea8d0b28e6
commit cd17328aad
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2001-01-18 Nick Clifton <nickc@redhat.com>
* config/tc-arm.c (ldm_flags): Remove redundant bit from "fa" and
"da" flags.
(stm_flags): Remove redundant bit from "ed" and "da" flags.
2001-01-18 Alexandre Oliva <aoliva@redhat.com>
* configure.in (cpu_type, arch): Match i386 too.

View File

@ -344,24 +344,24 @@ static CONST struct asm_flg ldm_flags[] =
{"ed", 0x01800000},
{"fd", 0x00800000},
{"ea", 0x01000000},
{"fa", 0x08000000},
{"fa", 0x00000000},
{"ib", 0x01800000},
{"ia", 0x00800000},
{"db", 0x01000000},
{"da", 0x08000000},
{"da", 0x00000000},
{NULL, 0}
};
static CONST struct asm_flg stm_flags[] =
{
{"ed", 0x08000000},
{"ed", 0x00000000},
{"fd", 0x01000000},
{"ea", 0x00800000},
{"fa", 0x01800000},
{"ib", 0x01800000},
{"ia", 0x00800000},
{"db", 0x01000000},
{"da", 0x08000000},
{"da", 0x00000000},
{NULL, 0}
};