[llvm] a0236de - [FIX] Order macros after D72304

Johannes Doerfert via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 14 23:43:42 PST 2020


Author: Johannes Doerfert
Date: 2020-02-15T01:37:23-06:00
New Revision: a0236de7a927d2b7d68a805c40cdf6d4aa9442ba

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

LOG: [FIX] Order macros after 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 43baf14e9bc9..84f4ae7599fd 100644
--- a/llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
+++ b/llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
@@ -225,14 +225,14 @@ __OMP_RTL(omp_set_nested, false, Void, Int32)
 __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)
 
+__OMP_RTL(__last, false, Void, )
+
 #undef __OMP_RTL
 #undef OMP_RTL
 


        


More information about the llvm-commits mailing list