diff options
Diffstat (limited to 'libgomp/plugin')
-rw-r--r-- | libgomp/plugin/plugin-gcn.c | 8 | ||||
-rw-r--r-- | libgomp/plugin/plugin-nvptx.c | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/libgomp/plugin/plugin-gcn.c b/libgomp/plugin/plugin-gcn.c index 24504a032c6..d2786c65138 100644 --- a/libgomp/plugin/plugin-gcn.c +++ b/libgomp/plugin/plugin-gcn.c @@ -4064,4 +4064,12 @@ GOMP_OFFLOAD_openacc_destroy_thread_data (void *data) free (data); } +/* Indicate which GOMP_REQUIRES_* features are supported, currently none. */ + +bool +GOMP_OFFLOAD_supported_features (unsigned int *mask) +{ + return (*mask == 0); +} + /* }}} */ diff --git a/libgomp/plugin/plugin-nvptx.c b/libgomp/plugin/plugin-nvptx.c index d2ee232f4f6..942fb989bac 100644 --- a/libgomp/plugin/plugin-nvptx.c +++ b/libgomp/plugin/plugin-nvptx.c @@ -1233,6 +1233,14 @@ GOMP_OFFLOAD_fini_device (int n) return true; } +/* Indicate which GOMP_REQUIRES_* features are supported, currently none. */ + +bool +GOMP_OFFLOAD_supported_features (unsigned int *mask) +{ + return (*mask == 0); +} + /* Return the libgomp version number we're compatible with. There is no requirement for cross-version compatibility. */ |