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) ...@@ -166,13 +166,8 @@ print_rtx (in_rtx)
break; break;
case 'w': case 'w':
fprintf (outfile, fprintf (outfile, " ");
#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, XWINT (in_rtx, i));
" %d",
#else
" %ld",
#endif
XWINT (in_rtx, i));
break; break;
case 'i': 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