[Openmp-commits] [openmp] 184f94a - [OpenMP] Fix wrong number in openmp/runtime/src/dllexports
Shilei Tian via Openmp-commits
openmp-commits at lists.llvm.org
Fri Jan 28 21:23:13 PST 2022
Author: Shilei Tian
Date: 2022-01-29T00:23:08-05:00
New Revision: 184f94a8a89c702b2fc317fd12852d4991693de8
URL: https://github.com/llvm/llvm-project/commit/184f94a8a89c702b2fc317fd12852d4991693de8
DIFF: https://github.com/llvm/llvm-project/commit/184f94a8a89c702b2fc317fd12852d4991693de8.diff
LOG: [OpenMP] Fix wrong number in openmp/runtime/src/dllexports
This patch fixes the issue that numbers assigned to `interop` functions were already taken in `openmp/runtime/src/dllexports`.
Reviewed By: jdoerfert
Differential Revision: https://reviews.llvm.org/D118523
Added:
Modified:
openmp/runtime/src/dllexports
Removed:
################################################################################
diff --git a/openmp/runtime/src/dllexports b/openmp/runtime/src/dllexports
index ef50cc36dfd9b..6e446658607a2 100644
--- a/openmp/runtime/src/dllexports
+++ b/openmp/runtime/src/dllexports
@@ -553,9 +553,9 @@ kmp_set_disp_num_buffers 890
omp_realloc 777
omp_aligned_alloc 778
omp_aligned_calloc 806
- omp_get_interop_int 2514
- omp_get_interop_ptr 2515
- omp_get_interop_str 2516
+ omp_get_interop_int 807
+ omp_get_interop_ptr 808
+ omp_get_interop_str 809
omp_null_allocator DATA
omp_default_mem_alloc DATA
More information about the Openmp-commits
mailing list