diff options
author | Nick Clifton <nickc@redhat.com> | 2000-08-01 23:10:02 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-08-01 23:10:02 +0000 |
commit | 3f9dfb2cd93fb41169fe5edfe0268d759ba59420 (patch) | |
tree | 74b569054ecb609ab356f4cffdf95b0a7323a1f9 /gas/config | |
parent | 28e4f854cf9fb3d74282d12fa2d8277552cbe2fb (diff) | |
download | gdb-3f9dfb2cd93fb41169fe5edfe0268d759ba59420.zip gdb-3f9dfb2cd93fb41169fe5edfe0268d759ba59420.tar.gz gdb-3f9dfb2cd93fb41169fe5edfe0268d759ba59420.tar.bz2 |
Fix skip of 'cpsr_all' flag
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |