diff options
author | Tom Rix <trix@redhat.com> | 2002-05-30 15:25:37 +0000 |
---|---|---|
committer | Tom Rix <trix@redhat.com> | 2002-05-30 15:25:37 +0000 |
commit | c20129930b3074752f8e49a25c3a694b4e62a460 (patch) | |
tree | ebfdc704f9f2c437f5208df20190c12d2fb1af12 /opcodes | |
parent | d7a97a9b1c152d07b2b8eb3295d77aee8b1d4881 (diff) | |
download | gdb-c20129930b3074752f8e49a25c3a694b4e62a460.zip gdb-c20129930b3074752f8e49a25c3a694b4e62a460.tar.gz gdb-c20129930b3074752f8e49a25c3a694b4e62a460.tar.bz2 |
Fix for invalid conflict warning.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/d10v-opc.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 2c5816b..3e0c3d7 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2002-05-30 Diego Novillo <dnovillo@redhat.com> + + * d10v-opc.c (d10v_opcodes): `btsti' does not modify its + arguments. + 2002-05-28 Kuang Hwa Lin <kuang@sbcglobal.net> * configure.in: Add DLX configuraton support. diff --git a/opcodes/d10v-opc.c b/opcodes/d10v-opc.c index b2ce10f..8682177 100644 --- a/opcodes/d10v-opc.c +++ b/opcodes/d10v-opc.c @@ -1,5 +1,5 @@ /* d10v-opc.c -- D10V opcode list - Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. Written by Martin Hunt, Cygnus Support This file is part of GDB, GAS, and the GNU binutils. @@ -196,7 +196,7 @@ const struct d10v_opcode d10v_opcodes[] = { { "brf0t.s", SHORT_B, 3, MU, BRANCH|PAR|RF0, 0x4b00, 0x7f00, { ANUM8 } }, { "brf0t.l", LONG_B, 3, MU, SEQ, 0x25800000, 0x3fff0000, { ANUM16 } }, { "bseti", SHORT_2, 1, IU, PAR, 0x801, 0x7e01, { RDST, UNUM4 } }, - { "btsti", SHORT_2, 1, IU, PAR|WF0, 0xe01, 0x7e01, { RDST, UNUM4 } }, + { "btsti", SHORT_2, 1, IU, PAR|WF0, 0xe01, 0x7e01, { RSRC2, UNUM4 } }, { "clrac", SHORT_2, 1, IU, PAR, 0x5601, 0x7eff, { ADST } }, { "cmp", SHORT_2, 1, EITHER, PAR|WF0, 0x600, 0x7e01, { RSRC2, RSRC } }, { "cmp", SHORT_2, 1, IU, PAR|WF0, 0x1603, 0x7eef, { ASRC2, ASRC } }, |