diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2021-08-16 14:00:13 +0200 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2021-08-16 14:00:13 +0200 |
commit | e660441f94f2ca2ca1bd63c922c6a43737c2259e (patch) | |
tree | 5224e5326d726754989c5ae3538344f3bd6a3afe /gcc | |
parent | c517cf2e685e2903b591d63c1034ff9726cb3822 (diff) | |
download | gcc-e660441f94f2ca2ca1bd63c922c6a43737c2259e.zip gcc-e660441f94f2ca2ca1bd63c922c6a43737c2259e.tar.gz gcc-e660441f94f2ca2ca1bd63c922c6a43737c2259e.tar.bz2 |
[OpenMP] Update omp-low.c's omp_runtime_api_call [PR101931]
gcc/ChangeLog:
PR middle-end/101931
* omp-low.c (omp_runtime_api_call): Update for routines
added in the meanwhile.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/omp-low.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/omp-low.c b/gcc/omp-low.c index 22ba579..bef9940 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -3863,6 +3863,8 @@ omp_runtime_api_call (const_tree fndecl) { /* This array has 3 sections. First omp_* calls that don't have any suffixes. */ + "omp_alloc", + "omp_free", "target_alloc", "target_associate_ptr", "target_disassociate_ptr", @@ -3873,13 +3875,17 @@ omp_runtime_api_call (const_tree fndecl) NULL, /* Now omp_* calls that are available as omp_* and omp_*_. */ "capture_affinity", + "destroy_allocator", "destroy_lock", "destroy_nest_lock", "display_affinity", + "fulfill_event", "get_active_level", "get_affinity_format", "get_cancellation", + "get_default_allocator", "get_default_device", + "get_device_num", "get_dynamic", "get_initial_device", "get_level", @@ -3895,6 +3901,7 @@ omp_runtime_api_call (const_tree fndecl) "get_partition_num_places", "get_place_num", "get_proc_bind", + "get_supported_active_levels", "get_team_num", "get_thread_limit", "get_thread_num", @@ -3908,6 +3915,7 @@ omp_runtime_api_call (const_tree fndecl) "pause_resource", "pause_resource_all", "set_affinity_format", + "set_default_allocator", "set_lock", "set_nest_lock", "test_lock", @@ -3916,7 +3924,9 @@ omp_runtime_api_call (const_tree fndecl) "unset_nest_lock", NULL, /* And finally calls available as omp_*, omp_*_ and omp_*_8_. */ + "display_env", "get_ancestor_thread_num", + "init_allocator", "get_partition_place_nums", "get_place_num_procs", "get_place_proc_ids", |