Remove redundant bit from "fa" and "da" flags
This commit is contained in:
parent
ea8d0b28e6
commit
cd17328aad
@ -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.
|
||||
|
@ -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}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user