POLY_INT_CST: remove extra space in dump
authorMartin Liska <mliska@suse.cz>
Mon, 21 Sep 2020 10:46:00 +0000 (12:46 +0200)
committerMartin 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

index 2a9c98e..d1150e4 100644 (file)
@@ -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);
              }