diff options
author | Jon Chesterfield <jonathanchesterfield@gmail.com> | 2019-08-28 01:56:26 +0000 |
---|---|---|
committer | Jon Chesterfield <jonathanchesterfield@gmail.com> | 2019-08-28 01:56:26 +0000 |
commit | e73e3013a646b9c5d3e11fac10afcfff464cb895 (patch) | |
tree | 17a06456a5d15d4f3e3e6d0e63beca6ea2d35584 | |
parent | 1709f4847e0c771314d7b63ed9df15caa5866dc1 (diff) | |
download | bcm5719-llvm-e73e3013a646b9c5d3e11fac10afcfff464cb895.tar.gz bcm5719-llvm-e73e3013a646b9c5d3e11fac10afcfff464cb895.zip |
Fix build break due to close brace lost in merge
llvm-svn: 370148
-rw-r--r-- | openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h b/openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h index 0f548289f9c..144f7ab1d79 100644 --- a/openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h +++ b/openmp/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, |