Commit 8843c120 by Diego Novillo Committed by Diego Novillo

tree-inline.c (copy_tree_r): Also copy OMP_CLAUSE nodes.


	* tree-inline.c (copy_tree_r): Also copy OMP_CLAUSE nodes.

From-SVN: r110513
parent 0170cfa2
2006-02-02 Diego Novillo <dnovillo@redhat.com>
* tree-inline.c (copy_tree_r): Also copy OMP_CLAUSE nodes.
2006-02-02 Diego Novillo <dnovillo@redhat.com>
PR 25990
* tree-cfg.c (move_block_to_fn): Clear out the basic block
array after growing it.
......
......@@ -2278,7 +2278,8 @@ copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code))
|| code == TREE_LIST
|| code == TREE_VEC
|| code == TYPE_DECL)
|| code == TYPE_DECL
|| code == OMP_CLAUSE)
{
/* Because the chain gets clobbered when we make a copy, we save it
here. */
......
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