Commit cb11f3cf by Jakub Jelinek Committed by Jakub Jelinek

* task.c (GOMP_PLUGIN_target_task_completion): Add missing return.

From-SVN: r232447
parent 49abe076
2016-01-15 Jakub Jelinek <jakub@redhat.com>
* task.c (GOMP_PLUGIN_target_task_completion): Add missing return.
2016-01-15 Cesar Philippidis <cesar@codesourcery.com>
* testsuite/libgomp.oacc-fortran/kernels-data.f90: New test.
......
......@@ -579,6 +579,7 @@ GOMP_PLUGIN_target_task_completion (void *data)
{
ttask->state = GOMP_TARGET_TASK_FINISHED;
gomp_mutex_unlock (&team->task_lock);
return;
}
ttask->state = GOMP_TARGET_TASK_FINISHED;
gomp_target_task_completion (team, task);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment