OSDN Git Service

(print_rtx, case 'w'): Use HOST_WIDE_INT_PRINT_DEC.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 Nov 1996 19:14:15 +0000 (19:14 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 Nov 1996 19:14:15 +0000 (19:14 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13175 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/print-rtl.c

index 93153d4..7c26819 100644 (file)
@@ -166,13 +166,8 @@ print_rtx (in_rtx)
        break;
 
       case 'w':
-       fprintf (outfile,
-#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
-                " %d",
-#else
-                " %ld",
-#endif
-                XWINT (in_rtx, i));
+       fprintf (outfile, " ");
+       fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, XWINT (in_rtx, i));
        break;
 
       case 'i':