diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2021-04-21 22:47:18 +0200 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2021-04-21 22:47:18 +0200 |
commit | 0c0bdcc60cfa0e87b3b9abc1460a7073b199d38a (patch) | |
tree | 38db4b325436936806a05dcd24268977d56e876a /libgomp | |
parent | 7eeb8c04e53fa880ee559efb727517ce778d17a0 (diff) | |
download | gcc-0c0bdcc60cfa0e87b3b9abc1460a7073b199d38a.zip gcc-0c0bdcc60cfa0e87b3b9abc1460a7073b199d38a.tar.gz gcc-0c0bdcc60cfa0e87b3b9abc1460a7073b199d38a.tar.bz2 |
libgomp.fortran/depobj-1.f90: Fix omp_depend_kind
libgomp/
* testsuite/libgomp.fortran/depobj-1.f90: Use omp_lib's
omp_depend_kind instead of defining it as 16.
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/testsuite/libgomp.fortran/depobj-1.f90 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libgomp/testsuite/libgomp.fortran/depobj-1.f90 b/libgomp/testsuite/libgomp.fortran/depobj-1.f90 index eb314f6..1e239bba 100644 --- a/libgomp/testsuite/libgomp.fortran/depobj-1.f90 +++ b/libgomp/testsuite/libgomp.fortran/depobj-1.f90 @@ -1,7 +1,6 @@ module m -! use omp_lib + use omp_lib, only: omp_depend_kind implicit none (type, external) -integer, parameter :: omp_depend_kind = 16 integer :: xx integer(omp_depend_kind) :: dd1, dd2 contains |