diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-08-29 19:10:06 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-08-29 19:10:06 +0000 |
commit | 05c25ee6fd578ab01aee818bacb79f8fda43f646 (patch) | |
tree | fd4627d8e72414cb909d5f41da9bff8a335f871f /gcc/print-rtl.c | |
parent | 95547454750000143fae77b9aecc4ffd6937ff3a (diff) | |
download | gcc-05c25ee6fd578ab01aee818bacb79f8fda43f646.tar.gz |
Move num_elem out of the u union to shorten the rtx for CONST_WIDE_INT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@202085 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 3620bd6e6c2..8dad9f686b1 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -616,7 +616,7 @@ print_rtx (const_rtx in_rtx) case CONST_WIDE_INT: if (! flag_simple) fprintf (outfile, " "); - hwivec_output_hex (outfile, CONST_WIDE_INT_VEC (in_rtx)); + cwi_output_hex (outfile, in_rtx); break; #endif |