Skip to content

Commit

Permalink
[OpenMPOpt][FIX] Resolve OpenMP runtime call type mismatches
Browse files Browse the repository at this point in the history
Exposed by D76058 and tested once that one lands.
  • Loading branch information
jdoerfert committed Mar 23, 2020
1 parent ff2f509 commit 3f51c5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
Expand Up @@ -209,8 +209,8 @@ __OMP_RTL(omp_get_thread_limit, false, Int32, )
__OMP_RTL(omp_get_supported_active_levels, false, Int32, )
__OMP_RTL(omp_get_max_active_levels, false, Int32, )
__OMP_RTL(omp_get_level, false, Int32, )
__OMP_RTL(omp_get_ancestor_thread_num, false, Int32, )
__OMP_RTL(omp_get_team_size, false, Int32, )
__OMP_RTL(omp_get_ancestor_thread_num, false, Int32, Int32)
__OMP_RTL(omp_get_team_size, false, Int32, Int32)
__OMP_RTL(omp_get_active_level, false, Int32, )
__OMP_RTL(omp_in_final, false, Int32, )
__OMP_RTL(omp_get_proc_bind, false, Int32, )
Expand All @@ -219,7 +219,7 @@ __OMP_RTL(omp_get_num_procs, false, Int32, )
__OMP_RTL(omp_get_place_proc_ids, false, Void, Int32, Int32Ptr)
__OMP_RTL(omp_get_place_num, false, Int32, )
__OMP_RTL(omp_get_partition_num_places, false, Int32, )
__OMP_RTL(omp_get_partition_place_nums, false, Int32, )
__OMP_RTL(omp_get_partition_place_nums, false, Void, Int32Ptr)

__OMP_RTL(omp_set_num_threads, false, Void, Int32)
__OMP_RTL(omp_set_dynamic, false, Void, Int32)
Expand Down

0 comments on commit 3f51c5d

Please sign in to comment.