projects
/
platform
/
upstream
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed5ae55
)
POLY_INT_CST: remove extra space in dump
author
Martin Liska
<mliska@suse.cz>
Mon, 21 Sep 2020 10:46:00 +0000
(12:46 +0200)
committer
Martin Liska
<mliska@suse.cz>
Mon, 21 Sep 2020 10:47:32 +0000
(12:47 +0200)
gcc/ChangeLog:
* print-tree.c (print_node): Remove extra space.
gcc/print-tree.c
patch
|
blob
|
history
diff --git
a/gcc/print-tree.c
b/gcc/print-tree.c
index
2a9c98e
..
d1150e4
100644
(file)
--- a/
gcc/print-tree.c
+++ b/
gcc/print-tree.c
@@
-851,7
+851,7
@@
print_node (FILE *file, const char *prefix, tree node, int indent,
char buf[10];
for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
{
- snprintf (buf, sizeof (buf), "elt%u:
", i);
+ snprintf (buf, sizeof (buf), "elt%u:", i);
print_node (file, buf, POLY_INT_CST_COEFF (node, i),
indent + 4);
}