[Openmp-commits] [openmp] [OpenMP] Add missing bit with the Hurd support (PR #70609)
Brad Smith via Openmp-commits
openmp-commits at lists.llvm.org
Sun Oct 29 17:23:55 PDT 2023
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/70609
Looking at 855d09855d8e541176758f38015e8b9b522d6110 it looks like a bit was
missing. The padding variable is used further down by the KMP_ALLOCA()
function.
>From ef1c8b4c2f8761d9474755b9f85a4323c80750ff Mon Sep 17 00:00:00 2001
From: Brad Smith <brad at comstyle.com>
Date: Sun, 29 Oct 2023 19:13:22 -0400
Subject: [PATCH] [OpenMP] Add missing bit with the Hurd support
Looking at 855d09855d8e541176758f38015e8b9b522d6110 it looks like a bit was
missing. The padding variable is used further down by the KMP_ALLOCA()
function.
---
openmp/runtime/src/z_Linux_util.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/openmp/runtime/src/z_Linux_util.cpp b/openmp/runtime/src/z_Linux_util.cpp
index e6aa6f413d168c5..5495f60d2029d49 100644
--- a/openmp/runtime/src/z_Linux_util.cpp
+++ b/openmp/runtime/src/z_Linux_util.cpp
@@ -512,7 +512,7 @@ static void *__kmp_launch_worker(void *thr) {
#endif /* KMP_BLOCK_SIGNALS */
#if KMP_OS_LINUX || KMP_OS_DRAGONFLY || KMP_OS_FREEBSD || KMP_OS_NETBSD || \
- KMP_OS_OPENBSD
+ KMP_OS_OPENBSD || KMP_OS_HURD
if (__kmp_stkoffset > 0 && gtid > 0) {
padding = KMP_ALLOCA(gtid * __kmp_stkoffset);
(void)padding;
More information about the Openmp-commits
mailing list