Commit 28d10cea by Richard Stallman

(print_node): Print the chain of a STRING_CST.

From-SVN: r3799
parent 8f7ac220
...@@ -586,6 +586,11 @@ print_node (file, prefix, node, indent) ...@@ -586,6 +586,11 @@ print_node (file, prefix, node, indent)
case STRING_CST: case STRING_CST:
fprintf (file, " \"%s\"", TREE_STRING_POINTER (node)); fprintf (file, " \"%s\"", TREE_STRING_POINTER (node));
/* Print the chain at second level. */
if (indent == 4)
print_node (file, "chain", TREE_CHAIN (node), indent + 4);
else
print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
break; break;
case IDENTIFIER_NODE: case IDENTIFIER_NODE:
......
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