Commit fc6b530f authored by Russ Cox's avatar Russ Cox

cmd/gc: remove spurious newline from node dump

R=ken2
CC=golang-dev
https://golang.org/cl/7276048
parent 9bfd3c39
......@@ -1672,11 +1672,11 @@ fmtinstallgo(void)
void
dumplist(char *s, NodeList *l)
{
print("%s\n%+H\n", s, l);
print("%s%+H\n", s, l);
}
void
dump(char *s, Node *n)
{
print("%s [%p]\n%+N\n", s, n, n);
print("%s [%p]%+N\n", s, n, n);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment