diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2005-07-28 20:32:21 +0000 |
---|---|---|
committer | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2005-07-28 20:32:21 +0000 |
commit | e61d5b97903cbe83b2214e8868e44f68399b0679 (patch) | |
tree | 433f2abe774841119c7bb625e8ef5adb083a0e4e /include | |
parent | 4fe79f1c9726073ff311008a0454cf33c412cfb1 (diff) | |
download | cygnal-e61d5b97903cbe83b2214e8868e44f68399b0679.tar.gz cygnal-e61d5b97903cbe83b2214e8868e44f68399b0679.tar.bz2 cygnal-e61d5b97903cbe83b2214e8868e44f68399b0679.zip |
PR gas/336
* hppa.h (pa_opcodes): Allow 0 immediates in PA 2.0 variants of pdtlb
and pitlb.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 6 | ||||
-rw-r--r-- | include/opcode/hppa.h | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 1a05c70f6..045b4a92d 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,9 @@ +2005-07-28 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR gas/336 + * hppa.h (pa_opcodes): Allow 0 immediates in PA 2.0 variants of pdtlb + and pitlb. + 2005-07-27 Jan Beulich <jbeulich@novell.com> * i386.h (i386_optab): Add comment to movd. Use LongMem for all diff --git a/include/opcode/hppa.h b/include/opcode/hppa.h index f81615cf7..172da697c 100644 --- a/include/opcode/hppa.h +++ b/include/opcode/hppa.h @@ -735,9 +735,12 @@ static const struct pa_opcode pa_opcodes[] = { "lci", 0x04001300, 0xfc003fe0, "x(s,b),t", pa10, 0}, { "pdtlb", 0x04001600, 0xfc00ffdf, "cLcZx(b)", pa20, FLAG_STRICT}, { "pdtlb", 0x04001600, 0xfc003fdf, "cLcZx(s,b)", pa20, FLAG_STRICT}, +{ "pdtlb", 0x04001600, 0xfc1fffdf, "cLcZ@(b)", pa20, FLAG_STRICT}, +{ "pdtlb", 0x04001600, 0xfc1f3fdf, "cLcZ@(s,b)", pa20, FLAG_STRICT}, { "pdtlb", 0x04001200, 0xfc00ffdf, "cZx(b)", pa10, 0}, { "pdtlb", 0x04001200, 0xfc003fdf, "cZx(s,b)", pa10, 0}, { "pitlb", 0x04000600, 0xfc001fdf, "cLcZx(S,b)", pa20, FLAG_STRICT}, +{ "pitlb", 0x04000600, 0xfc1f1fdf, "cLcZ@(S,b)", pa20, FLAG_STRICT}, { "pitlb", 0x04000200, 0xfc001fdf, "cZx(S,b)", pa10, 0}, { "pdtlbe", 0x04001240, 0xfc00ffdf, "cZx(b)", pa10, 0}, { "pdtlbe", 0x04001240, 0xfc003fdf, "cZx(s,b)", pa10, 0}, |