You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The input IR is test.ll.
This IR is genereted by compiling the following Fortran program with flang --target=aarch64-unknown-linux-gnu -S -emit-llvm -O2 -mcpu=neoverse-v1
subroutinefoo(a, b, n)
implicit nonereal, intent(out) :: a(n)
real, intent(in) :: b(n)
integer, intent(in) :: n
integer:: i
do i =1, n -5
a(i) = b(i+3) + b(i) + b(i+2) + b(i+1) + b(i+4) + b(i+5)
end doendsubroutine
@huaatian Thanks! I confirmed #132352 fixes the assertion failure when compiling the reproducer attached in this issue and my original Fortran program. I'll wait for the merge.
After the commit b09b9ac, (PR #129204), the following assertion failure started to appear.
The input IR is test.ll.
This IR is genereted by compiling the following Fortran program with
flang --target=aarch64-unknown-linux-gnu -S -emit-llvm -O2 -mcpu=neoverse-v1
@huaatian Could you take a look?
The text was updated successfully, but these errors were encountered: