diff options
author | Mark Danial <mark.danial@ibm.com> | 2025-04-01 15:47:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-01 15:47:19 -0400 |
commit | ac0649a75a60743faa16b77396db617587d45fea (patch) | |
tree | bb29a2ef86d5c92b9b70289e6cd5a06c4477b583 /openmp/runtime/src/z_Linux_util.cpp | |
parent | 1407f5bee9aa8e2a8a4fcab63ab0a3030a8b0dcf (diff) | |
download | llvm-ac0649a75a60743faa16b77396db617587d45fea.zip llvm-ac0649a75a60743faa16b77396db617587d45fea.tar.gz llvm-ac0649a75a60743faa16b77396db617587d45fea.tar.bz2 |
[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.
Diffstat (limited to 'openmp/runtime/src/z_Linux_util.cpp')
-rw-r--r-- | openmp/runtime/src/z_Linux_util.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openmp/runtime/src/z_Linux_util.cpp b/openmp/runtime/src/z_Linux_util.cpp index 0c89f23..87f2711 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; } |