* hppa-dis.c (print_insn_hppa, cases 'a', 'd'): Print space afterwards.
authorJim Kingdon <jkingdon@engr.sgi.com>
Wed, 21 Jul 1993 18:44:40 +0000 (18:44 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Wed, 21 Jul 1993 18:44:40 +0000 (18:44 +0000)
* hppa-dis.c (print_insn_hppa, case 'd'): Use GET_COND not GET_FIELD.

opcodes/ChangeLog
opcodes/hppa-dis.c

index 0c2ff96cc8e46e9f95fc6ccedd7727d6c94f544b..b2f58d7b23338a6f299fedafd1b5c0de4426ad7b 100644 (file)
@@ -1,3 +1,9 @@
+Wed Jul 21 11:43:32 1993  Jim Kingdon  (kingdon@deneb.cygnus.com)
+
+       * hppa-dis.c (print_insn_hppa, cases 'a', 'd'): Print space afterwards.
+
+       * hppa-dis.c (print_insn_hppa, case 'd'): Use GET_COND not GET_FIELD.
+
 Mon Jul 19 13:52:21 1993  Jim Kingdon  (kingdon@deneb.cygnus.com)
 
        * hppa-dis.c (print_insn_hppa): Use extract_5r_store for 'r'.
index 93b7ea32dd64a138ee1b6fcbbdca0064e872e3af..1f2134f6b9599130f9193eda4e67e1b3d1103aa1 100644 (file)
@@ -455,10 +455,13 @@ print_insn_hppa (memaddr, info)
                                  info);
                  break;
                case 'a':
-                 (*info->fprintf_func) (info->stream, "%s",
-                                   compare_cond_names[GET_COND (insn)]);
+                 (*info->fprintf_func) (info->stream, "%s ",
+                                        compare_cond_names[GET_COND (insn)]);
                  break;
                case 'd':
+                 (*info->fprintf_func) (info->stream, "%s ",
+                                        add_cond_names[GET_COND (insn)]);
+                 break;
                case '!':
                  (*info->fprintf_func) (info->stream, "%s",
                                    add_cond_names[GET_FIELD (insn, 16, 18)]);
This page took 0.028555 seconds and 4 git commands to generate.