aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-inline.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d39dfc8..7c6288e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
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.
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index 012ef68..99bc068 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. */