* hppa-dis.c (print_insn_hppa): Handle 'J', 'K', and 'cc'.
authorJeff Law <law@redhat.com>
Sun, 19 Sep 1999 20:10:45 +0000 (20:10 +0000)
committerJeff Law <law@redhat.com>
Sun, 19 Sep 1999 20:10:45 +0000 (20:10 +0000)
opcodes/ChangeLog
opcodes/hppa-dis.c

index 2d9365e751204a113075ba5df58f4f6b02cdf562..41c80dacb9d75004f80b3c10fae84c86eafcc2ff 100644 (file)
@@ -1,5 +1,7 @@
 Sun Sep 19 10:41:27 1999  Jeffrey A Law  (law@cygnus.com)
 
+       * hppa-dis.c (print_insn_hppa): Handle 'J', 'K', and 'cc'.
+
        * hppa-dis.c (print_insn_hppa): Handle 'fe' and 'cJ'.
 
        * hppa-dis.c (print_insn_hppa): Handle '#', 'd', and 'cq'.
index 85ae1a2ed315eebcf6e80b9664be54b1bca5f1bd..d34eeabd229b235808a677ce88219a71a75763ff 100644 (file)
@@ -921,6 +921,12 @@ print_insn_hppa (memaddr, info)
                                           float_format_names[GET_FIELD
                                                              (insn, 20, 20)]);
                  break;
+
+                case 'J':
+                  fput_const (extract_14 (insn), info);
+                  break;
+
+
                case '#':
                  {
                    int sign = GET_FIELD (insn, 31, 31);
@@ -936,6 +942,7 @@ print_insn_hppa (memaddr, info)
                    fput_const (disp, info);
                    break;
                  }
+                case 'K':
                case 'd':
                  {
                    int sign = GET_FIELD (insn, 31, 31);
This page took 0.048593 seconds and 4 git commands to generate.