diff options
author | Phil Blundell <philb@gnu.org> | 2000-11-01 07:24:25 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2000-11-01 07:24:25 +0000 |
commit | 67beff64eb3f82bde1c23c6baf60bcceb6286c50 (patch) | |
tree | 477391e6ca94535d1b5ec56ac6b32ed73b4acd6a | |
parent | caaa2fec477a2b65ae1bce61af5b916e4a03e131 (diff) | |
download | gdb-67beff64eb3f82bde1c23c6baf60bcceb6286c50.zip gdb-67beff64eb3f82bde1c23c6baf60bcceb6286c50.tar.gz gdb-67beff64eb3f82bde1c23c6baf60bcceb6286c50.tar.bz2 |
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/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 27b579b..e3803e1 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 51c0a76..b821d38 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"); |