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
commit313ba22d8570a209ad8dd3cd8b3106d766f051e7 (patch)
treef99d61ff9f9d239d66f89d3367b188006e9f5e70 /opcodes/hppa-dis.c
parent07ed4d775f79f5d005a8ce1b256dab510858a185 (diff)
downloadbinutils-redhat-313ba22d8570a209ad8dd3cd8b3106d766f051e7.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 dc45d5ee4b..ef2112cd5b 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;