Remove semicolon after do {} while (false) in HSA_LOG
authorTom de Vries <tom@codesourcery.com>
Tue, 31 Oct 2017 12:56:41 +0000 (12:56 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Tue, 31 Oct 2017 12:56:41 +0000 (12:56 +0000)
2017-10-31  Tom de Vries  <tom@codesourcery.com>

* plugin/plugin-hsa.c (HSA_LOG): Remove semicolon after
"do {} while (false)".
(init_single_kernel, GOMP_OFFLOAD_async_run): Add missing semicolon
after HSA_DEBUG call.

From-SVN: r254264

libgomp/ChangeLog
libgomp/plugin/plugin-hsa.c

index 39e98c735c7f33498cc372d680a601dc12f1996e..f68604ca424b95a905fccdbb1116f1f50f1d686b 100644 (file)
@@ -1,3 +1,10 @@
+2017-10-31  Tom de Vries  <tom@codesourcery.com>
+
+       * plugin/plugin-hsa.c (HSA_LOG): Remove semicolon after
+       "do {} while (false)".
+       (init_single_kernel, GOMP_OFFLOAD_async_run): Add missing semicolon
+       after HSA_DEBUG call.
+
 2017-10-28  Jakub Jelinek  <jakub@redhat.com>
 
        * target.c (struct gomp_coalesce_buf): New type.
index fc08f5df058a83f1959606eb34b14f45cfbbb2c5..cf3a4d5142d54185a37a35c0ea69273c19af91f2 100644 (file)
@@ -261,7 +261,7 @@ init_enviroment_variables (void)
        fprintf (stderr, __VA_ARGS__); \
       } \
   } \
-  while (false);
+  while (false)
 
 /* Print a debugging message to stderr.  */
 
@@ -1241,7 +1241,7 @@ init_single_kernel (struct kernel_info *kernel, unsigned *max_omp_data_size)
       if (dependency->dependencies_count > 0)
        {
          HSA_DEBUG ("HSA does not allow kernel dispatching code with "
-                    "a depth bigger than one\n")
+                    "a depth bigger than one\n");
          goto failure;
        }
 
@@ -1664,7 +1664,7 @@ GOMP_OFFLOAD_async_run (int device, void *tgt_fn, void *tgt_vars,
 {
   pthread_t pt;
   struct async_run_info *info;
-  HSA_DEBUG ("GOMP_OFFLOAD_async_run invoked\n")
+  HSA_DEBUG ("GOMP_OFFLOAD_async_run invoked\n");
   info = GOMP_PLUGIN_malloc (sizeof (struct async_run_info));
 
   info->device = device;