cp-gimplify.c (cp_fold_r): Add support for OACC_LOOP.
authorCesar Philippidis <cesar@codesourcery.com>
Wed, 18 Nov 2015 16:31:04 +0000 (08:31 -0800)
committerCesar Philippidis <cesar@gcc.gnu.org>
Wed, 18 Nov 2015 16:31:04 +0000 (08:31 -0800)
gcc/cp/
* cp-gimplify.c (cp_fold_r): Add support for OACC_LOOP.

From-SVN: r230554

gcc/cp/ChangeLog
gcc/cp/cp-gimplify.c

index 267bd192335ef4fdf6c4167cc30de65ae2c87d6e..e9368d6530b98933cde60283b93584232e72f9af 100644 (file)
@@ -1,3 +1,7 @@
+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>
 
        PR bootstrap/68346
index 8fe9e133407dbd301f2daa51e4d45d2aad18c9e4..99d0cfb8b9ea96460dffe8aa1da7640ae9736610 100644 (file)
@@ -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;