aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-nested.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2009-10-17 22:21:24 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2009-10-17 22:21:24 +0000
commitd79c2936cbfadddc0928df9df1353613b708febf (patch)
tree42da3018f900469fdb1aa9419abc4b5c4af439c0 /gcc/tree-nested.c
parent79ddec0279508bee9a68b640a9633d874b06ac4a (diff)
downloadgcc-d79c2936cbfadddc0928df9df1353613b708febf.zip
gcc-d79c2936cbfadddc0928df9df1353613b708febf.tar.gz
gcc-d79c2936cbfadddc0928df9df1353613b708febf.tar.bz2
tree-nested.c (convert_nonlocal_reference_stmt): New case.
* tree-nested.c (convert_nonlocal_reference_stmt) <GIMPLE_COND>: New case. Force using values to replace references within the statement. (convert_local_reference_stmt): Likewise. From-SVN: r152960
Diffstat (limited to 'gcc/tree-nested.c')
-rw-r--r--gcc/tree-nested.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/tree-nested.c b/gcc/tree-nested.c
index 706571c..0b5e732 100644
--- a/gcc/tree-nested.c
+++ b/gcc/tree-nested.c
@@ -1307,6 +1307,12 @@ convert_nonlocal_reference_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
*handled_ops_p = false;
return NULL_TREE;
+ case GIMPLE_COND:
+ wi->val_only = true;
+ wi->is_lhs = false;
+ *handled_ops_p = false;
+ return NULL_TREE;
+
default:
/* For every other statement that we are not interested in
handling here, let the walker traverse the operands. */
@@ -1707,6 +1713,12 @@ convert_local_reference_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
info, gimple_omp_body (stmt));
break;
+ case GIMPLE_COND:
+ wi->val_only = true;
+ wi->is_lhs = false;
+ *handled_ops_p = false;
+ return NULL_TREE;
+
default:
/* For every other statement that we are not interested in
handling here, let the walker traverse the operands. */