entered into RCS
authorRichard Kenner <kenner@gcc.gnu.org>
Thu, 9 Jul 1992 15:28:15 +0000 (11:28 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Thu, 9 Jul 1992 15:28:15 +0000 (11:28 -0400)
From-SVN: r1541

gcc/print-rtl.c

index 7e8d2208b05be6a4d93e3d9f61385e471b064623..90d65666dde4842ded9d1d9e5c14892fafa614db 100644 (file)
@@ -1,5 +1,5 @@
 /* Print RTL for GNU C Compiler.
-   Copyright (C) 19871991 Free Software Foundation, Inc.
+   Copyright (C) 1987-1991 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -140,6 +140,16 @@ print_rtx (in_rtx)
        indent -= 2;
        break;
 
+      case 'w':
+       fprintf (outfile,
+#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
+                " %d",
+#else
+                " %ld",
+#endif
+                XWINT (in_rtx, i));
+       break;
+
       case 'i':
        fprintf (outfile, " %d", XINT (in_rtx, i));
        if (is_insn && &INSN_CODE (in_rtx) == &XINT (in_rtx, i)