参照元 †説明 †
引数 †
返り値 †
参考 †実装 †/* Print the node NODE on standard error, for debugging. Most nodes referred to by this one are printed recursively down to a depth of six. */ DEBUG_FUNCTION void debug_tree (tree node) { table = new hash_set<tree> (HASH_SIZE); print_node (stderr, "", node, 0); delete table; table = NULL; putc ('\n', stderr); } コメント † |