Commit 3629f741 by Jim Wilson

(print_node): Don't print blank line for null fields in a TREE_VEC.

From-SVN: r2133
parent 7dcdbecb
......@@ -601,6 +601,7 @@ print_node (file, prefix, node, indent)
case TREE_VEC:
len = TREE_VEC_LENGTH (node);
for (i = 0; i < len; i++)
if (TREE_VEC_ELT (node, i))
{
char temp[10];
sprintf (temp, "elt %d", i);
......
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