summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2000-11-01 07:24:25 +0000
committerPhil Blundell <philb@gnu.org>2000-11-01 07:24:25 +0000
commit67beff64eb3f82bde1c23c6baf60bcceb6286c50 (patch)
tree477391e6ca94535d1b5ec56ac6b32ed73b4acd6a
parentcaaa2fec477a2b65ae1bce61af5b916e4a03e131 (diff)
downloadbinutils-gdb-67beff64eb3f82bde1c23c6baf60bcceb6286c50.tar.gz
2000-11-01 Philip Blundell <philb@gnu.org>
From 2000-08-01 Nick Clifton <nickc@cygnus.com> * config/tc-arm.c (do_mrs): Fix skip of 'cpsr_all' flag.
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-arm.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 27b579be4eb..e3803e14b80 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-01 Philip Blundell <philb@gnu.org>
+
+ From 2000-08-01 Nick Clifton <nickc@cygnus.com>
+ * config/tc-arm.c (do_mrs): Fix skip of 'cpsr_all' flag.
+
2000-10-16 Philip Blundell <pb@futuretv.com>
* configure.in: Set version number to 2.10.1.
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index 51c0a7602b5..b821d382f26 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -1943,7 +1943,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");