From: Martin Liska Date: Mon, 21 Sep 2020 10:46:00 +0000 (+0200) Subject: POLY_INT_CST: remove extra space in dump X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48b0c1250a5c7d72be6b3fbbb1117d1cce43daee;p=gcc.git POLY_INT_CST: remove extra space in dump gcc/ChangeLog: * print-tree.c (print_node): Remove extra space. --- diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 2a9c98ea7a0..d1150e472d5 100644 --- 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); }