aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Chesterfield <jonathanchesterfield@gmail.com>2019-08-28 01:56:26 +0000
committerJon Chesterfield <jonathanchesterfield@gmail.com>2019-08-28 01:56:26 +0000
commitbae5e5989e667b8d0db15815dc9345a9776273e4 (patch)
treeb1531cb1485009a0a0d6f32dd4a14966d963c68e
parent77d31c11e83957e751f9d9854e58110e6b532c0c (diff)
downloadopenmp_llvm-bae5e5989e667b8d0db15815dc9345a9776273e4.tar.gz
Fix build break due to close brace lost in merge
git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@370148 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--libomptarget/deviceRTLs/nvptx/src/target_impl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libomptarget/deviceRTLs/nvptx/src/target_impl.h b/libomptarget/deviceRTLs/nvptx/src/target_impl.h
index 0f54828..144f7ab 100644
--- a/libomptarget/deviceRTLs/nvptx/src/target_impl.h
+++ b/libomptarget/deviceRTLs/nvptx/src/target_impl.h
@@ -51,6 +51,7 @@ INLINE int32_t __kmpc_impl_shfl_sync(__kmpc_impl_lanemask_t Mask, int32_t Var,
#else
return __shfl(Var, SrcLane);
#endif // CUDA_VERSION
+}
INLINE int32_t __kmpc_impl_shfl_down_sync(__kmpc_impl_lanemask_t Mask,
int32_t Var, uint32_t Delta,