diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 167374af794..9dfc7f37f0d 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2016-04-21 Alexander Monakov + + * plugin/plugin-nvptx.c (map_fini): Make cuMemFreeHost error + non-fatal. + 2016-04-19 Jakub Jelinek PR middle-end/70680 diff --git a/libgomp/plugin/plugin-nvptx.c b/libgomp/plugin/plugin-nvptx.c index 3f1bb6d90e9..4b5783344fb 100644 --- a/libgomp/plugin/plugin-nvptx.c +++ b/libgomp/plugin/plugin-nvptx.c @@ -134,7 +134,7 @@ map_fini (struct ptx_stream *s) r = cuMemFreeHost (s->h); if (r != CUDA_SUCCESS) - GOMP_PLUGIN_fatal ("cuMemFreeHost error: %s", cuda_error (r)); + GOMP_PLUGIN_error ("cuMemFreeHost error: %s", cuda_error (r)); } static void