diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-07-09 15:28:15 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-07-09 15:28:15 +0000 |
commit | 2d618a37a42662092718b25de5da4cc5916c6f63 (patch) | |
tree | 63caf58e8e813283d85f2ddfdadc4df0cc2720c6 /gcc/print-rtl.c | |
parent | 3d8b53829a983fa8832536ea698d1651dcc89579 (diff) | |
download | gcc-2d618a37a42662092718b25de5da4cc5916c6f63.tar.gz |
entered into RCS
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1541 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 7e8d2208b05..90d65666dde 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -1,5 +1,5 @@ /* 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) |