aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-03-09 20:40:49 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1995-03-09 20:40:49 -0500
commit8fcf10c01f414c9d40d41e783caad3cba9fd7b05 (patch)
tree11381a53dea2f5d9925963ae0fdd536c10f9ca48 /gcc/print-tree.c
parent809d657596207c4f062814e21733533a9e43a2b9 (diff)
downloadgcc-8fcf10c01f414c9d40d41e783caad3cba9fd7b05.zip
gcc-8fcf10c01f414c9d40d41e783caad3cba9fd7b05.tar.gz
gcc-8fcf10c01f414c9d40d41e783caad3cba9fd7b05.tar.bz2
(print_node): Fix typo in printing large INTEGER_CST.
From-SVN: r9146
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 2b002af..396c3e2 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -637,8 +637,7 @@ print_node (file, prefix, node, indent)
#endif
-TREE_INT_CST_LOW (node));
else
- fprintf (file, "%c", 'l');
- fprintf (file,
+ fprintf (file,
#if HOST_BITS_PER_WIDE_INT == 64
#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
" 0x%lx%016lx",