diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2016-03-17 16:07:54 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2016-03-17 16:07:54 +0100 |
commit | 91106e8435c68963f7f0a8e6bf45acb0b2a432ab (patch) | |
tree | 34546c9e023cfcd4b03b3aec5fd46fa8dae2a8c3 /gcc/cp/parser.c | |
parent | b38ba58bde4cdb7ffd47b56a79d1de819cfe9cea (diff) | |
download | gcc-91106e8435c68963f7f0a8e6bf45acb0b2a432ab.tar.gz |
Rename GOMP_MAP_FORCE_DEALLOC to GOMP_MAP_DELETE
Also rename the Fortran OMP_MAP_FORCE_DEALLOC to OMP_MAP_DELETE.
include/
* gomp-constants.h (enum gomp_map_kind): Rename
GOMP_MAP_FORCE_DEALLOC to GOMP_MAP_DELETE. Adjust all users.
gcc/fortran/
* gfortran.h (enum gfc_omp_map_op): Rename OMP_MAP_FORCE_DEALLOC
to OMP_MAP_DELETE. Adjust all users.
From-SVN: r234294
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r-- | gcc/cp/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 62570d46d8f..8ba4ffecdc2 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -30086,7 +30086,7 @@ cp_parser_oacc_data_clause (cp_parser *parser, pragma_omp_clause c_kind, kind = GOMP_MAP_FORCE_ALLOC; break; case PRAGMA_OACC_CLAUSE_DELETE: - kind = GOMP_MAP_FORCE_DEALLOC; + kind = GOMP_MAP_DELETE; break; case PRAGMA_OACC_CLAUSE_DEVICE: kind = GOMP_MAP_FORCE_TO; |