From ac0649a75a60743faa16b77396db617587d45fea Mon Sep 17 00:00:00 2001 From: Mark Danial Date: Tue, 1 Apr 2025 15:47:19 -0400 Subject: [PATCH] [OpenMP] [AIX] Add missing } in openmp/runtime/src/z_Linux_util.cpp (#133973) Changes from https://github.com/llvm/llvm-project/pull/133034 removed a `}` presumably accidentally that are causing failures in the AIX flang bot. --- openmp/runtime/src/z_Linux_util.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openmp/runtime/src/z_Linux_util.cpp b/openmp/runtime/src/z_Linux_util.cpp index 0c89f2346750..87f271118642 100644 --- a/openmp/runtime/src/z_Linux_util.cpp +++ b/openmp/runtime/src/z_Linux_util.cpp @@ -2520,6 +2520,8 @@ int __kmp_get_load_balance(int max) { glb_running_threads = running_threads; return running_threads; +} + #elif KMP_OS_HAIKU int __kmp_get_load_balance(int max) { return -1; }