Commit 734de8c8 by Richard Kenner

(print_rtx, case 'w'): Use HOST_WIDE_INT_PRINT_DEC.

From-SVN: r13175
parent 21e3a81b
......@@ -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':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment