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
+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.
fprintf (stderr, __VA_ARGS__); \
} \
} \
- while (false);
+ while (false)
/* Print a debugging message to stderr. */
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;
}
{
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;