* hppa-dis.c (print_insn_hppa): Look at next arg instead of bits
authorJeff Law <law@redhat.com>
Sat, 28 Aug 1999 06:29:15 +0000 (06:29 +0000)
committerJeff Law <law@redhat.com>
Sat, 28 Aug 1999 06:29:15 +0000 (06:29 +0000)
        to decide to print a space.

opcodes/ChangeLog
opcodes/hppa-dis.c

index ffaf3e7a2a283db97710ea4687922ec486745469..6efe11510bed3dfb6f41c265577928122a894562 100644 (file)
@@ -1,3 +1,8 @@
+Sat Aug 28 00:27:24 1999  Jerry Quinn <jquinn@nortelnetworks.com>
+
+       * hppa-dis.c (print_insn_hppa):  Look at next arg instead of bits
+       to decide to print a space.
+
 1999-08-21  Alan Modra  <alan@spri.levels.unisa.edu.au>
 
        * i386-dis.c: Add AMD athlon instruction support.
index 5df90c4dffda98ca0d5d6cb7932ac5dfd2081a20..2e68f347411b6ee9a3b100a38752e2704c6d3589 100644 (file)
@@ -677,7 +677,7 @@ print_insn_hppa (memaddr, info)
                case 'F':
                  /* if no destination completer and not before a completer
                     for fcmp, need a space here */
-                 if (GET_FIELD (insn, 21, 22) == 1 || s[1] == '?')
+                 if (s[1] == 'G' || s[1] == '?')
                    fputs_filtered (float_format_names[GET_FIELD (insn, 19, 20)],
                                    info);
                  else
@@ -701,7 +701,7 @@ print_insn_hppa (memaddr, info)
                case 'I':
                  /* if no destination completer and not before a completer
                     for fcmp, need a space here */
-                 if (GET_FIELD (insn, 21, 22) == 1 || s[1] == '?')
+                 if (s[1] == '?')
                    fputs_filtered (float_format_names[GET_FIELD (insn, 20, 20)],
                                    info);
                  else
This page took 0.028018 seconds and 4 git commands to generate.