From a0236de7a927d2b7d68a805c40cdf6d4aa9442ba Mon Sep 17 00:00:00 2001 From: Johannes Doerfert Date: Sat, 15 Feb 2020 01:37:23 -0600 Subject: [PATCH] [FIX] Order macros after D72304 --- llvm/include/llvm/Frontend/OpenMP/OMPKinds.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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