Rebase.
[official-gcc.git] / gcc / testsuite / gfortran.dg / bind_c_array_params_2.f90
blob8f0e77f7da7389540ca3109e80561904f3c5d5e9
1 ! { dg-do compile }
2 ! { dg-options "-std=f2008ts -fdump-tree-original" }
3 ! { dg-additional-options "-mno-explicit-relocs" { target alpha*-*-* } }
4 ! { dg-additional-options "-mno-relax-pic-calls" { target mips*-*-* } }
6 ! Check that assumed-shape variables are correctly passed to BIND(C)
7 ! as defined in TS 29913
8 !
9 interface
10 subroutine test (xx) bind(C, name="myBindC")
11 type(*), dimension(:,:) :: xx
12 end subroutine test
13 end interface
15 integer :: aa(4,4)
16 call test(aa)
17 end
19 ! { dg-final { scan-assembler-times "\[ \t\]\[$,_0-9\]*myBindC" 1 { target { ! { hppa*-*-* } } } } }
20 ! { dg-final { scan-assembler-times "myBindC,%r2" 1 { target { hppa*-*-* } } } }
21 ! { dg-final { scan-tree-dump-times "test \\\(&parm\\." 1 "original" } }
22 ! { dg-final { cleanup-tree-dump "original" } }