From: Jeff Law Date: Wed, 28 Jul 1999 10:36:10 +0000 (+0000) Subject: * hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E' X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3ea80b3388293b9a6362cefbf05f758d91c9596d;p=deliverable%2Fbinutils-gdb.git * hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E' code. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 31031e9b4a..0b2f3f57cf 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +Wed Jul 28 04:33:58 1999 Jerry Quinn + + * hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E' + code. + 1999-07-21 Ian Lance Taylor From Mark Elbrecht: 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;