From: Diego Novillo Date: Thu, 2 Feb 2006 12:36:26 +0000 (+0000) Subject: tree-inline.c (copy_tree_r): Also copy OMP_CLAUSE nodes. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8843c120f1f0a562b0250c59ec66317feae2fb0c;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d39dfc8f4fa..7c6288e8104 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-02-02 Diego Novillo + + * tree-inline.c (copy_tree_r): Also copy OMP_CLAUSE nodes. + 2006-02-02 Diego Novillo PR 25990 diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 012ef6836f0..99bc068ebef 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -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. */