* hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E'
authorJeff Law <law@redhat.com>
Wed, 28 Jul 1999 10:36:10 +0000 (10:36 +0000)
committerJeff Law <law@redhat.com>
Wed, 28 Jul 1999 10:36:10 +0000 (10:36 +0000)
        code.

opcodes/ChangeLog
opcodes/hppa-dis.c

index 31031e9b4a576c20c1e36598b39b261c4f51954e..0b2f3f57cf3f1cebca8aa29e17b305be70ad1dd6 100644 (file)
@@ -1,3 +1,8 @@
+Wed Jul 28 04:33:58 1999  Jerry Quinn <jquinn@nortelnetworks.com>
+
+       * hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E'
+       code.
+
 1999-07-21  Ian Lance Taylor  <ian@zembu.com>
 
        From Mark Elbrecht:
index dc45d5ee4ba6f24c086a320844bd3a8906f9718e..ef2112cd5bc6c809eeafbd1a6954eeb5c2824fd3 100644 (file)
@@ -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;
This page took 0.030069 seconds and 4 git commands to generate.