Changes from Jeff Law, law@cs.utah.edu:
authorStu Grossman <grossman@cygnus>
Tue, 15 Jun 1993 20:37:37 +0000 (20:37 +0000)
committerStu Grossman <grossman@cygnus>
Tue, 15 Jun 1993 20:37:37 +0000 (20:37 +0000)
* hppa-dis.c: Fix typo.  'a' and 'd' were reversed.
Do not print a space before the completers specified by
'a' and 'd'.

opcodes/ChangeLog
opcodes/hppa-dis.c

index 3948106a4ac754c7d1686e5932a8211e8add57cf..476232d29ba089109b373d3861d8f5caf108aad0 100644 (file)
@@ -1,3 +1,10 @@
+Tue Jun 15 13:36:10 1993  Stu Grossman  (grossman@cygnus.com)
+
+       Changes from Jeff Law, law@cs.utah.edu:
+       * hppa-dis.c: Fix typo.  'a' and 'd' were reversed.
+       Do not print a space before the completers specified by
+       'a' and 'd'.
+
 Fri Jun 11 18:40:21 1993  Ken Raeburn  (raeburn@cygnus.com)
 
        * mips-dis.c: No longer need to bomb out if HOST_64_BIT is
index 115013c029a56e8c33c56d02adfe7ef487e9d330..3026996603ee8aa9378fd0c129733b951be7fac7 100644 (file)
@@ -366,7 +366,7 @@ print_insn_hppa (memaddr, info)
          
          (*info->fprintf_func) (info->stream, "%s", opcode->name);
 
-         if (!strchr ("cCY<?!@-+&U>~nZFIM", opcode->args[0]))
+         if (!strchr ("cCY<?!@-+&U>~nZFIMad", opcode->args[0]))
            (*info->fprintf_func) (info->stream, " ");
          for (s = opcode->args; *s != '\0'; ++s)
            {
@@ -453,11 +453,11 @@ print_insn_hppa (memaddr, info)
                  fputs_filtered (add_cond_names[GET_FIELD (insn, 16, 18) + 8],
                                  info);
                  break;
-               case 'd':
+               case 'a':
                  (*info->fprintf_func) (info->stream, "%s",
                                    compare_cond_names[GET_COND (insn)]);
                  break;
-               case 'a':
+               case 'd':
                case '!':
                  (*info->fprintf_func) (info->stream, "%s",
                                    add_cond_names[GET_FIELD (insn, 16, 18)]);
This page took 0.028667 seconds and 4 git commands to generate.