]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix description of 'GOMP_MAP_FIRSTPRIVATE'
authortschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Jun 2019 22:14:52 +0000 (22:14 +0000)
committertschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Jun 2019 22:14:52 +0000 (22:14 +0000)
..., which got garbled in r230275.

include/
* gomp-constants.h (enum gomp_map_kind): Fix description of
'GOMP_MAP_FIRSTPRIVATE'.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@272450 138bc75d-0d04-0410-961f-82ee72b054a4

include/ChangeLog
include/gomp-constants.h

index 28f4664aa557d1d8ad824e57f88dd460ce44e33b..6d09a8d6e07bc9f37bcf273dae27186809a8d29a 100644 (file)
@@ -1,3 +1,8 @@
+2019-06-18  Thomas Schwinge  <thomas@codesourcery.com>
+
+       * gomp-constants.h (enum gomp_map_kind): Fix description of
+       'GOMP_MAP_FIRSTPRIVATE'.
+
 2019-06-10  Martin Liska  <mliska@suse.cz>
 
        * ansidecl.h (ATTRIBUTE_WARN_UNUSED_RESULT): New macro.
index 8b93634f1b8bd2256db97d09392ad9b74e14bd0c..82e9094c934215a491ef13a19da8d65e3882c6e4 100644 (file)
@@ -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.  */