summaryrefslogtreecommitdiff
path: root/opcodes/hppa-dis.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1999-07-28 10:36:10 +0000
committerJeff Law <law@redhat.com>1999-07-28 10:36:10 +0000
commit27375cf3b7bdf70e9d38487755da3214a6843b67 (patch)
tree68910942ce53ddb22d80273e207fda55d1c6aace /opcodes/hppa-dis.c
parent6bc2d9c7ab1209d6a059b467946c4cf9e328087c (diff)
downloadgdb-27375cf3b7bdf70e9d38487755da3214a6843b67.tar.gz
* hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E'
code.
Diffstat (limited to 'opcodes/hppa-dis.c')
-rw-r--r--opcodes/hppa-dis.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c
index dc45d5ee4ba..ef2112cd5bc 100644
--- a/opcodes/hppa-dis.c
+++ b/opcodes/hppa-dis.c
@@ -327,11 +327,7 @@ print_insn_hppa (memaddr, info)
fput_creg (GET_FIELD (insn, 6, 10), info);
break;
case 'E':
- if (GET_FIELD (insn, 25, 25))
- fput_fp_reg_r (GET_FIELD (insn, 6, 10), info);
- else
- fput_fp_reg (GET_FIELD (insn, 6, 10), info);
- break;
+ fput_fp_reg (GET_FIELD (insn, 6, 10), info);
case 't':
fput_reg (GET_FIELD (insn, 27, 31), info);
break;