Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[flang][HLFIR] unimplemented symbol lowering #112549

Open
tblah opened this issue Oct 16, 2024 · 0 comments
Open

[flang][HLFIR] unimplemented symbol lowering #112549

tblah opened this issue Oct 16, 2024 · 0 comments

Comments

@tblah
Copy link
Contributor

tblah commented Oct 16, 2024

Some programs from the Fujitsu test suite hit not yet implemented: lowering symbol to HLFIR:

Here is a minimal reproducer:

subroutine sub1(dest1, dest2, src1, src2)
  real, dimension(1:2)::dest1, dest2, src1, src2
  integer::i

  do i=1,2
     block
       dest1(i) = src1(i) * src2(i) + src1(i) * src2(i)
     end block
  end do
end subroutine sub1

subroutine sub2(dest1_res, dest2_res, src1_res, src2_res)
  real(kind=8),dimension(1:2)::dest1_res, dest2_res, src1_res, src2_res
end subroutine sub2

@jeanPerier is this expected? I was surprised to see a HLFIR TODO

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant