aboutsummaryrefslogtreecommitdiff
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
commit3ea80b3388293b9a6362cefbf05f758d91c9596d (patch)
treed8b62866ca727ea18246e26ea4af873477133231 /opcodes/hppa-dis.c
parent88a380f31eaeba11f66fddf0384101fa44ae2402 (diff)
downloadgdb-3ea80b3388293b9a6362cefbf05f758d91c9596d.zip
gdb-3ea80b3388293b9a6362cefbf05f758d91c9596d.tar.gz
gdb-3ea80b3388293b9a6362cefbf05f758d91c9596d.tar.bz2
* 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 dc45d5e..ef2112c 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;