Clean up libgomp GCC 5 legacy support
authorThomas Schwinge <thomas@codesourcery.com>
Mon, 6 May 2019 08:49:55 +0000 (10:49 +0200)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Mon, 6 May 2019 08:49:55 +0000 (10:49 +0200)
libgomp/
* oacc-parallel.c: Add comments to legacy entry points (GCC 5).

From-SVN: r270901

libgomp/ChangeLog
libgomp/oacc-parallel.c

index 30bb2d4beba4262038ce5593230bfec9949cc9e9..64e0a8ad8df851d46abe33733a686256ce1a353c 100644 (file)
@@ -1,3 +1,7 @@
+2019-05-06  Thomas Schwinge  <thomas@codesourcery.com>
+
+       * oacc-parallel.c: Add comments to legacy entry points (GCC 5).
+
 2019-03-27  Kevin Buettner  <kevinb@redhat.com>
 
        * team.c (gomp_team_start): Initialize pool->threads[0].
index b77c5e8b9c5d8da5fe1334a423818752b1db80db..f5fb63c5b5a0f076e57e9f7934eed5ad58346565 100644 (file)
@@ -275,7 +275,7 @@ GOACC_parallel_keyed (int flags_m, void (*fn) (void *),
   acc_dev->openacc.async_set_async_func (acc_async_sync);
 }
 
-/* Legacy entry point, only provide host execution.  */
+/* Legacy entry point (GCC 5).  Only provide host fallback execution.  */
 
 void
 GOACC_parallel (int flags_m, void (*fn) (void *),
@@ -649,12 +649,16 @@ GOACC_wait (int async, int num_waits, ...)
     acc_wait_all_async (async);
 }
 
+/* Legacy entry point (GCC 5).  */
+
 int
 GOACC_get_num_threads (void)
 {
   return 1;
 }
 
+/* Legacy entry point (GCC 5).  */
+
 int
 GOACC_get_thread_num (void)
 {