arm: Add .type and .size to __gnu_cmse_nonsecure_call [PR115360]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr83149.f90
blobfc0607e136951dc2812c5454600d49e73ee22522
1 ! Compiled with pr83149_1.f90
3 module mod1
4 integer :: ncells
5 end module
7 module mod2
8 contains
9 function get() result(array)
10 use mod1
11 real array(ncells)
12 array = 1.0
13 end function
14 end module