Commit f25c3cc0 by Cesar Philippidis Committed by Cesar Philippidis

cp-gimplify.c (cp_fold_r): Add support for OACC_LOOP.

	gcc/cp/
	* cp-gimplify.c (cp_fold_r): Add support for OACC_LOOP.

From-SVN: r230554
parent a3ff5f87
2015-11-17 Cesar Philippidis <cesar@codesourcery.com>
* cp-gimplify.c (cp_fold_r): Add support for OACC_LOOP.
2015-11-17 Jason Merrill <jason@redhat.com> 2015-11-17 Jason Merrill <jason@redhat.com>
PR bootstrap/68346 PR bootstrap/68346
......
...@@ -933,7 +933,8 @@ cp_fold_r (tree *stmt_p, int *walk_subtrees, void *data) ...@@ -933,7 +933,8 @@ cp_fold_r (tree *stmt_p, int *walk_subtrees, void *data)
code = TREE_CODE (stmt); code = TREE_CODE (stmt);
if (code == OMP_FOR || code == OMP_SIMD || code == OMP_DISTRIBUTE if (code == OMP_FOR || code == OMP_SIMD || code == OMP_DISTRIBUTE
|| code == OMP_TASKLOOP || code == CILK_FOR || code == CILK_SIMD) || code == OMP_TASKLOOP || code == CILK_FOR || code == CILK_SIMD
|| code == OACC_LOOP)
{ {
tree x; tree x;
int i, n; int i, n;
......
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