From: Tobias Burnus Date: Fri, 4 Jun 2021 11:26:40 +0000 (+0200) Subject: gfortran.dg/gomp/pr99928-5.f90: Use proper iteration var X-Git-Tag: basepoints/gcc-13~7102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad3f0ad4bafe377072a53ded468fd9948e659f46;p=thirdparty%2Fgcc.git gfortran.dg/gomp/pr99928-5.f90: Use proper iteration var gcc/testsuite/ChangeLog: * gfortran.dg/gomp/pr99928-5.f90: Really use the proper iteration variable. --- diff --git a/gcc/testsuite/gfortran.dg/gomp/pr99928-5.f90 b/gcc/testsuite/gfortran.dg/gomp/pr99928-5.f90 index c612aaf9556e..49cbf1e8cc28 100644 --- a/gcc/testsuite/gfortran.dg/gomp/pr99928-5.f90 +++ b/gcc/testsuite/gfortran.dg/gomp/pr99928-5.f90 @@ -88,7 +88,7 @@ subroutine bar () ! { dg-final { scan-tree-dump "omp taskloop\[^\n\r]*lastprivate\\(j10\\)" "gimple" } } ! { dg-final { scan-tree-dump "omp simd\[^\n\r]*linear\\(j10:1\\)" "gimple" } } !$omp taskloop simd linear (j10) default(none) - do j01 = 1, 64 + do j10 = 1, 64 end do ! { dg-final { scan-tree-dump "omp teams\[^\n\r]*shared\\(j11\\)" "gimple" } } ! { dg-final { scan-tree-dump "omp distribute\[^\n\r]*lastprivate\\(j11\\)" "gimple" } }