view gcc/testsuite/gfortran.dg/c_loc_test.f90 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
! { dg-additional-sources c_loc_driver.c }
module c_loc_test
implicit none

contains
  subroutine test0() bind(c)
    use, intrinsic :: iso_c_binding
    implicit none
    integer(c_int), target :: x
    type(c_ptr) :: my_c_ptr
    interface
       subroutine test_address(x, expected_value) bind(c)
         use, intrinsic :: iso_c_binding
         type(c_ptr), value :: x
         integer(c_int), value :: expected_value
       end subroutine test_address
    end interface
    x = 100_c_int
    my_c_ptr = c_loc(x)
    call test_address(my_c_ptr, 100_c_int)
  end subroutine test0
end module c_loc_test