* pa.c (print_operand): Handle case 'c' for .vtable_inherit
authorAlan Modra <alan@linuxcare.com.au>
Wed, 18 Oct 2000 02:12:03 +0000 (02:12 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 18 Oct 2000 02:12:03 +0000 (20:12 -0600)
From-SVN: r36920

gcc/ChangeLog
gcc/config/pa/pa.c

index 88a4357540df2b99b685e564469191c3b96bb8a4..88745d9bc8460c3fe268f50cb0747854fd103071 100644 (file)
@@ -1,3 +1,7 @@
+Tue Oct 17 20:11:08 2000  Alan Modra <alan@linuxcare.com.au>
+
+       * pa.c (print_operand): Handle case 'c' for .vtable_inherit
+
 Tue Oct 17 20:05:51 2000  Martin Buchholz <martin@xemacs.org>
 
        * i370.md: Fix spelling typo.
index 9013ac0143d1170b4ce552ce3714b29d39737174..0a5c4495457a21ce4800a5fad0c6a9f695ae1460 100644 (file)
@@ -4117,6 +4117,11 @@ print_operand (file, x, code)
        fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
        return;
       }
+    case 'c':
+      /* We can get here from a .vtable_inherit due to our
+        CONSTANT_ADDRESS_P rejecting perfectly good constant
+        addresses.  */
+      break;
     default:
       abort ();
     }