Fix skip of 'cpsr_all' flag
This commit is contained in:
parent
28e4f854cf
commit
3f9dfb2cd9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2000-08-01 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
* config/tc-arm.c (do_mrs): Fix skip fo 'cpsr_all' flag.
|
||||||
|
|
||||||
2000-08-01 Kazu Hirata <kazu@hxi.com>
|
2000-08-01 Kazu Hirata <kazu@hxi.com>
|
||||||
|
|
||||||
* config/obj-som.c: Fix formatting.
|
* config/obj-som.c: Fix formatting.
|
||||||
|
|
|
@ -2104,7 +2104,7 @@ do_mrs (str, flags)
|
||||||
/* This is for backwards compatability with older toolchains. */
|
/* This is for backwards compatability with older toolchains. */
|
||||||
else if (strcmp (str, "cpsr_all") == 0
|
else if (strcmp (str, "cpsr_all") == 0
|
||||||
|| strcmp (str, "spsr_all") == 0)
|
|| strcmp (str, "spsr_all") == 0)
|
||||||
skip = 7;
|
skip = 8;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
inst.error = _("{C|S}PSR expected");
|
inst.error = _("{C|S}PSR expected");
|
||||||
|
|
Loading…
Reference in a new issue