aboutsummaryrefslogtreecommitdiff
path: root/opcodes/frv-dis.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-06-05 16:04:20 +0000
committerNick Clifton <nickc@redhat.com>2003-06-05 16:04:20 +0000
commit36c3ae2457c89d404e9bb81de084da39064ce7cc (patch)
tree8fc0752722e1a7e4458e19310a686ac2679a9621 /opcodes/frv-dis.c
parente5379b03cf80d6b0bd9a8d7dd03e2220a61956a2 (diff)
downloadgdb-36c3ae2457c89d404e9bb81de084da39064ce7cc.zip
gdb-36c3ae2457c89d404e9bb81de084da39064ce7cc.tar.gz
gdb-36c3ae2457c89d404e9bb81de084da39064ce7cc.tar.bz2
Add code to handle even-numbered only register operands
Diffstat (limited to 'opcodes/frv-dis.c')
-rw-r--r--opcodes/frv-dis.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/opcodes/frv-dis.c b/opcodes/frv-dis.c
index f71e1c5..dfe053d 100644
--- a/opcodes/frv-dis.c
+++ b/opcodes/frv-dis.c
@@ -230,12 +230,21 @@ frv_cgen_print_operand (cd, opindex, xinfo, fields, attrs, pc, length)
case FRV_OPERAND_FRINTI :
print_keyword (cd, info, & frv_cgen_opval_fr_names, fields->f_FRi, 0);
break;
+ case FRV_OPERAND_FRINTIEVEN :
+ print_keyword (cd, info, & frv_cgen_opval_fr_names, fields->f_FRi, 0);
+ break;
case FRV_OPERAND_FRINTJ :
print_keyword (cd, info, & frv_cgen_opval_fr_names, fields->f_FRj, 0);
break;
+ case FRV_OPERAND_FRINTJEVEN :
+ print_keyword (cd, info, & frv_cgen_opval_fr_names, fields->f_FRj, 0);
+ break;
case FRV_OPERAND_FRINTK :
print_keyword (cd, info, & frv_cgen_opval_fr_names, fields->f_FRk, 0);
break;
+ case FRV_OPERAND_FRINTKEVEN :
+ print_keyword (cd, info, & frv_cgen_opval_fr_names, fields->f_FRk, 0);
+ break;
case FRV_OPERAND_FRJ :
print_keyword (cd, info, & frv_cgen_opval_fr_names, fields->f_FRj, 0);
break;