diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2019-06-19 00:14:52 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2019-06-19 00:14:52 +0200 |
commit | cbdce9053506761f8ae8490bb71edda4630bb9d4 (patch) | |
tree | 64f647e4f2ef9679cab5bd3b77f3fe07c7ff0588 /include/gomp-constants.h | |
parent | bd194a51d45d7435dcc6a2cc91bafe03361ef605 (diff) | |
download | gcc-cbdce9053506761f8ae8490bb71edda4630bb9d4.zip gcc-cbdce9053506761f8ae8490bb71edda4630bb9d4.tar.gz gcc-cbdce9053506761f8ae8490bb71edda4630bb9d4.tar.bz2 |
Fix description of 'GOMP_MAP_FIRSTPRIVATE'
..., which got garbled in r230275.
include/
* gomp-constants.h (enum gomp_map_kind): Fix description of
'GOMP_MAP_FIRSTPRIVATE'.
From-SVN: r272450
Diffstat (limited to 'include/gomp-constants.h')
-rw-r--r-- | include/gomp-constants.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/gomp-constants.h b/include/gomp-constants.h index 8b93634..82e9094 100644 --- a/include/gomp-constants.h +++ b/include/gomp-constants.h @@ -71,12 +71,11 @@ enum gomp_map_kind /* Is a device pointer. OMP_CLAUSE_SIZE for these is unused; is implicitly POINTER_SIZE_UNITS. */ GOMP_MAP_FORCE_DEVICEPTR = (GOMP_MAP_FLAG_SPECIAL_1 | 0), - /* Do not map, copy bits for firstprivate instead. */ /* OpenACC device_resident. */ GOMP_MAP_DEVICE_RESIDENT = (GOMP_MAP_FLAG_SPECIAL_1 | 1), /* OpenACC link. */ GOMP_MAP_LINK = (GOMP_MAP_FLAG_SPECIAL_1 | 2), - /* Allocate. */ + /* Do not map, copy bits for firstprivate instead. */ GOMP_MAP_FIRSTPRIVATE = (GOMP_MAP_FLAG_SPECIAL | 0), /* Similarly, but store the value in the pointer rather than pointed by the pointer. */ |