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
commite997ce7a6447c40bd193783ed0f7318f3f699d1c (patch)
tree477391e6ca94535d1b5ec56ac6b32ed73b4acd6a
parente2aa988f5f9ea53de26336591203bf5abda5a4d4 (diff)
downloadbinutils-redhat-e997ce7a6447c40bd193783ed0f7318f3f699d1c.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 27b579be4e..e3803e14b8 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 51c0a7602b..b821d382f2 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");