[Openmp-commits] [openmp] 22bd75b - [openmp] Fix a git misfire in cf37a94c1e42ce

Jon Chesterfield via Openmp-commits openmp-commits at lists.llvm.org
Wed Oct 27 17:35:33 PDT 2021


Author: Jon Chesterfield
Date: 2021-10-28T01:35:25+01:00
New Revision: 22bd75be7074c49209890182f4d69d7ab1d2d972

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

LOG: [openmp] Fix a git misfire in cf37a94c1e42ce

Added: 
    

Modified: 
    openmp/libomptarget/DeviceRTL/src/Synchronization.cpp

Removed: 
    


################################################################################
diff  --git a/openmp/libomptarget/DeviceRTL/src/Synchronization.cpp b/openmp/libomptarget/DeviceRTL/src/Synchronization.cpp
index 46e7701a4872..d09461a01620 100644
--- a/openmp/libomptarget/DeviceRTL/src/Synchronization.cpp
+++ b/openmp/libomptarget/DeviceRTL/src/Synchronization.cpp
@@ -133,8 +133,6 @@ void syncWarp(__kmpc_impl_lanemask_t) {
 void syncThreads() { __builtin_amdgcn_s_barrier(); }
 void syncThreadsAligned() { syncThreads(); }
 
-void syncThreadsAligned() { syncThreads(); }
-
 void fenceTeam(int Ordering) { __builtin_amdgcn_fence(Ordering, "workgroup"); }
 
 void fenceKernel(int Ordering) { __builtin_amdgcn_fence(Ordering, "agent"); }


        


More information about the Openmp-commits mailing list