Commit 9c2c54dc by Mark Mitchell Committed by Mark Mitchell

print-tree.c (print_node): Do not use BLOCK_CHAIN when we're not looking at a BLOCK.

	* print-tree.c (print_node): Do not use BLOCK_CHAIN when we're not
	looking at a BLOCK.

From-SVN: r39818
parent 12fa82db
2001-02-17 Mark Mitchell <mark@codesourcery.com>
* print-tree.c (print_node): Do not use BLOCK_CHAIN when we're not
looking at a BLOCK.
2001-02-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* aclocal.m4 (gcc_AC_CHECK_DECL): Before attempting the test,
......
......@@ -641,7 +641,7 @@ print_node (file, prefix, node, indent)
EXPR_WFL_FILENAME (node) : "(no file info)"),
EXPR_WFL_LINENO (node), EXPR_WFL_COLNO (node));
}
print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
print_node (file, "chain", TREE_CHAIN (node), indent + 4);
break;
case 'c':
......
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