From: Cesar Philippidis Date: Wed, 18 Nov 2015 16:31:04 +0000 (-0800) Subject: cp-gimplify.c (cp_fold_r): Add support for OACC_LOOP. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f25c3cc06c2c6319547fdc5a79764d9b7b3e6f67;p=gcc.git 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 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 267bd192335..e9368d6530b 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2015-11-17 Cesar Philippidis + + * cp-gimplify.c (cp_fold_r): Add support for OACC_LOOP. + 2015-11-17 Jason Merrill PR bootstrap/68346 diff --git a/gcc/cp/cp-gimplify.c b/gcc/cp/cp-gimplify.c index 8fe9e133407..99d0cfb8b9e 100644 --- a/gcc/cp/cp-gimplify.c +++ b/gcc/cp/cp-gimplify.c @@ -933,7 +933,8 @@ cp_fold_r (tree *stmt_p, int *walk_subtrees, void *data) code = TREE_CODE (stmt); 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; int i, n;