Skip to content

Commit afced70

Browse files
authored
[OpenMP][Flang] Workaround omp_lib error (#123666)
It appears that omp_lib is not correctly (or maybe not at all?) found from the build directory. This made a few buildbots break after [PR#121356](#121356) landed. This is a workaround to unblock the buildbots. https://lab.llvm.org/staging/#/builders/130/builds/12654 https://lab.llvm.org/buildbot/#/builders/140/builds/15102 https://lab.llvm.org/staging/#/builders/105/builds/13855
1 parent 3274bf6 commit afced70

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flang/test/Lower/OpenMP/Todo/allocate-clause-allocator.f90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
! CHECK: not yet implemented: Unhandled clause allocate in omp.parallel
55
! CHECK: LLVM Translation failed for operation: omp.parallel
66
program p
7-
use omp_lib
7+
!use omp_lib
8+
integer(8),parameter::omp_default_mem_alloc=1_8
89
integer :: x
910
integer :: a
1011
integer :: i

0 commit comments

Comments
 (0)