summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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");