[llvm] 08c0a06 - [FIX] Ordering problem accidentally introduced with D72304

Johannes Doerfert via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 8 18:15:16 PST 2020


Author: Johannes Doerfert
Date: 2020-02-08T20:14:41-06:00
New Revision: 08c0a06d8f375e48d4acebac886bfdf19a2276ed

URL: https://github.com/llvm/llvm-project/commit/08c0a06d8f375e48d4acebac886bfdf19a2276ed
DIFF: https://github.com/llvm/llvm-project/commit/08c0a06d8f375e48d4acebac886bfdf19a2276ed.diff

LOG: [FIX] Ordering problem accidentally introduced with D72304

Added: 
    

Modified: 
    llvm/include/llvm/Frontend/OpenMP/OMPKinds.def

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Frontend/OpenMP/OMPKinds.def b/llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
index 04ab8dcc9bf5..96b99d1caa19 100644
--- a/llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
+++ b/llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
@@ -192,6 +192,11 @@ __OMP_RTL(__kmpc_push_num_threads, false, Void, IdentPtr, Int32,
 __OMP_RTL(__kmpc_push_proc_bind, false, Void, IdentPtr, Int32, /* Int */ Int32)
 __OMP_RTL(__kmpc_serialized_parallel, false, Void, IdentPtr, Int32)
 __OMP_RTL(__kmpc_end_serialized_parallel, false, Void, IdentPtr, Int32)
+__OMP_RTL(__kmpc_master, false, Int32, IdentPtr, Int32)
+__OMP_RTL(__kmpc_end_master, false, Void, IdentPtr, Int32)
+__OMP_RTL(__kmpc_critical, false, Void, IdentPtr, Int32, KmpCriticalNamePtrTy)
+__OMP_RTL(__kmpc_critical_with_hint, false, Void, IdentPtr, Int32, KmpCriticalNamePtrTy, Int32)
+__OMP_RTL(__kmpc_end_critical, false, Void, IdentPtr, Int32, KmpCriticalNamePtrTy)
 
 __OMP_RTL(omp_get_thread_num, false, Int32, )
 __OMP_RTL(omp_get_num_threads, false, Int32, )
@@ -224,13 +229,6 @@ __OMP_RTL(omp_set_schedule, false, Void, Int32, Int32)
 __OMP_RTL(omp_set_max_active_levels, false, Void, Int32)
 
 __OMP_RTL(__last, false, Void, )
-
-__OMP_RTL(__kmpc_master, false, Int32, IdentPtr, Int32)
-__OMP_RTL(__kmpc_end_master, false, Void, IdentPtr, Int32)
-__OMP_RTL(__kmpc_critical, false, Void, IdentPtr, Int32, KmpCriticalNamePtrTy)
-__OMP_RTL(__kmpc_critical_with_hint, false, Void, IdentPtr, Int32, KmpCriticalNamePtrTy, Int32)
-__OMP_RTL(__kmpc_end_critical, false, Void, IdentPtr, Int32, KmpCriticalNamePtrTy)
-
 #undef __OMP_RTL
 #undef OMP_RTL
 


        


More information about the llvm-commits mailing list