]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
liboffloadmic/
authoriverbin <iverbin@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 Jan 2016 13:40:22 +0000 (13:40 +0000)
committeriverbin <iverbin@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 Jan 2016 13:40:22 +0000 (13:40 +0000)
* plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_run): Pass extra NULL
to GOMP_OFFLOAD_async_run.

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

liboffloadmic/ChangeLog
liboffloadmic/plugin/libgomp-plugin-intelmic.cpp

index a4dc72ec0a732f2a7ca3dfe0c40da8163e472df8..b83fa8f516ce25530be717739e0161a7186aaa76 100644 (file)
@@ -1,4 +1,10 @@
+2016-01-20  Ilya Verbin  <ilya.verbin@intel.com>
+
+       * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_run): Pass extra NULL
+       to GOMP_OFFLOAD_async_run.
+
 2016-01-19  Martin Jambor  <mjambor@suse.cz>
+
        * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_async_run): New
        unused parameter.
        (GOMP_OFFLOAD_run): Likewise.
index 58ef5954ec52daf7128f4ab6d49480b6990e5d0d..57accb441d127951c3a2b25fa218af33ec2f9a9e 100644 (file)
@@ -548,5 +548,5 @@ GOMP_OFFLOAD_run (int device, void *tgt_fn, void *tgt_vars, void **)
 {
   TRACE ("(device = %d, tgt_fn = %p, tgt_vars = %p)", device, tgt_fn, tgt_vars);
 
-  GOMP_OFFLOAD_async_run (device, tgt_fn, tgt_vars, NULL);
+  GOMP_OFFLOAD_async_run (device, tgt_fn, tgt_vars, NULL, NULL);
 }