diff options
author | Nick Clifton <nickc@redhat.com> | 2003-10-30 10:03:03 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-10-30 10:03:03 +0000 |
commit | f46a9fbb7a97fd0dead099b950bd89a53950b8bb (patch) | |
tree | c37f21b303f0b2738b8ae3068575d9e58cd3b173 /opcodes | |
parent | 2b282e8b2293cd75e6b3a23cd1a4a46eef413710 (diff) | |
download | gdb-f46a9fbb7a97fd0dead099b950bd89a53950b8bb.zip gdb-f46a9fbb7a97fd0dead099b950bd89a53950b8bb.tar.gz gdb-f46a9fbb7a97fd0dead099b950bd89a53950b8bb.tar.bz2 |
Add second argument to rcpp instruction.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/alpha-opc.c | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 535694e..0ed5be5 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2003-10-30 Falk Hueffner <falk.hueffner@student.uni-tuebingen.de> + + * alpha-opc.c: Add support for a second argument to RPCC. + 2003-10-27 Stephane Carrez <stcarrez@nerim.fr> * m68hc11-dis.c: Convert to ISO C90 prototypes. diff --git a/opcodes/alpha-opc.c b/opcodes/alpha-opc.c index 8dc10e4..7cac7f8 100644 --- a/opcodes/alpha-opc.c +++ b/opcodes/alpha-opc.c @@ -1,5 +1,5 @@ /* alpha-opc.c -- Alpha AXP opcode list - Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright 1996, 1997, 1998, 1999, 2000, 2003 Free Software Foundation, Inc. Contributed by Richard Henderson <rth@cygnus.com>, patterned after the PPC opcode handling written by Ian Lance Taylor. @@ -1105,7 +1105,8 @@ const struct alpha_opcode alpha_opcodes[] = { { "wmb", MFC(0x18,0x4400), BASE, ARG_NONE }, { "fetch", MFC(0x18,0x8000), BASE, { ZA, PRB } }, { "fetch_m", MFC(0x18,0xA000), BASE, { ZA, PRB } }, - { "rpcc", MFC(0x18,0xC000), BASE, { RA } }, + { "rpcc", MFC(0x18,0xC000), BASE, { RA, ZB } }, + { "rpcc", MFC(0x18,0xC000), BASE, { RA, RB } }, /* ev6 una */ { "rc", MFC(0x18,0xE000), BASE, { RA } }, { "ecb", MFC(0x18,0xE800), BASE, { ZA, PRB } }, /* ev56 una */ { "rs", MFC(0x18,0xF000), BASE, { RA } }, |