From: Nick Clifton Date: Tue, 1 Aug 2000 23:10:02 +0000 (+0000) Subject: Fix skip of 'cpsr_all' flag X-Git-Tag: newlib-1_9_0~1295 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f9dfb2cd93fb41169fe5edfe0268d759ba59420;p=external%2Fbinutils.git Fix skip of 'cpsr_all' flag --- diff --git a/gas/ChangeLog b/gas/ChangeLog index a3dd273..5c5379c 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-08-01 Nick Clifton + + * config/tc-arm.c (do_mrs): Fix skip fo 'cpsr_all' flag. + 2000-08-01 Kazu Hirata * config/obj-som.c: Fix formatting. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 2fd8789..dcb1a20 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -2104,7 +2104,7 @@ do_mrs (str, flags) /* This is for backwards compatability with older toolchains. */ else if (strcmp (str, "cpsr_all") == 0 || strcmp (str, "spsr_all") == 0) - skip = 7; + skip = 8; else { inst.error = _("{C|S}PSR expected");