Commit 5bf665df by Richard Kenner

entered into RCS

From-SVN: r1541
parent 8415a5a9
/* Print RTL for GNU C Compiler.
Copyright (C) 1987, 1991 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)
......
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