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

enh: Fortran backend : Fix C_ptr #5278

Merged
merged 5 commits into from
Nov 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: Change in testcase
  • Loading branch information
adit4443ya committed Nov 10, 2024
commit 8e634bd84aaa3c276a228c7abb9fab9ed93725c0
12 changes: 6 additions & 6 deletions integration_tests/openmp_40.f90
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
program openmp_40
use omp_lib
integer :: i
do i = 1, 5
print *, i
end do
program main
use iso_c_binding, only: c_ptr!, c_loc
adit4443ya marked this conversation as resolved.
Show resolved Hide resolved
implicit none
integer, pointer :: x
type(c_ptr) :: ptr
! ptr = c_loc(x)
end program
Loading