aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Burnus <tobias@codesourcery.com>2020-11-27 11:40:11 +0100
committerTobias Burnus <tobias@codesourcery.com>2020-11-27 11:43:04 +0100
commitd78e106e95191f44274c8c9ba196abd6fd5ed558 (patch)
treeceaec58cdbf0fde912cb02d19aeea1a317c406fc
parent83325a9db8348c3ba5e9c871d106ee1b76d40526 (diff)
downloadgcc-d78e106e95191f44274c8c9ba196abd6fd5ed558.zip
gcc-d78e106e95191f44274c8c9ba196abd6fd5ed558.tar.gz
gcc-d78e106e95191f44274c8c9ba196abd6fd5ed558.tar.bz2
gfortran.dg/gomp/requires-4.f90: Fix !$omp syntax
gcc/testsuite/ * gfortran.dg/gomp/requires-4.f90: Fix '!$omp' syntax.
-rw-r--r--gcc/testsuite/gfortran.dg/gomp/requires-4.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/gomp/requires-4.f90 b/gcc/testsuite/gfortran.dg/gomp/requires-4.f90
index e0eb4db..0dc5e69 100644
--- a/gcc/testsuite/gfortran.dg/gomp/requires-4.f90
+++ b/gcc/testsuite/gfortran.dg/gomp/requires-4.f90
@@ -26,8 +26,8 @@ program main
!$omp requires reverse_offload
contains
subroutine foo
- !$target
- !$end target
+ !$omp target
+ !$omp end target
end subroutine
subroutine bar
!$omp requires unified_addres ! { dg-error "must appear in the specification part of a program unit" }