repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[AArch64] SVE tests
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
c_loc_tests_9.f03
blob
fa3238139a95bab4a5b8819454ecf75c102dd4cb
1
! { dg-do compile }
2
subroutine aaa(in)
3
use iso_c_binding
4
implicit none
5
CHARACTER(KIND=C_CHAR), DIMENSION(*), TARGET :: in
6
type(c_ptr) :: cptr
7
cptr = c_loc(in)
8
end subroutine aaa
9
10