summaryrefslogtreecommitdiff
path: root/gcc/print-rtl.c
diff options
context:
space:
mode:
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2013-08-29 19:10:06 +0000
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2013-08-29 19:10:06 +0000
commit05c25ee6fd578ab01aee818bacb79f8fda43f646 (patch)
treefd4627d8e72414cb909d5f41da9bff8a335f871f /gcc/print-rtl.c
parent95547454750000143fae77b9aecc4ffd6937ff3a (diff)
downloadgcc-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.c2
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