OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [c_f_pointer_shape_tests_3.f03] - Blame information for rev 384

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do compile }
2
! Verify that the type and rank of the SHAPE argument are enforced.
3
module c_f_pointer_shape_tests_3
4
  use, intrinsic :: iso_c_binding
5
 
6
contains
7
  subroutine sub0(my_c_array) bind(c)
8
    type(c_ptr), value :: my_c_array
9
    integer(c_int), dimension(:), pointer :: my_array_ptr
10
 
11
    call c_f_pointer(my_c_array, my_array_ptr, (/ 10.0 /)) ! { dg-error "must be a rank 1 INTEGER array" }
12
  end subroutine sub0
13
 
14
  subroutine sub1(my_c_array) bind(c)
15
    type(c_ptr), value :: my_c_array
16
    integer(c_int), dimension(:), pointer :: my_array_ptr
17
    integer(c_int), dimension(1,1) :: shape
18
 
19
    shape(1,1) = 10
20
    call c_f_pointer(my_c_array, my_array_ptr, shape) ! { dg-error "must be a rank 1 INTEGER array" }
21
  end subroutine sub1
22
end module c_f_pointer_shape_tests_3

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.