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
PR target/83368
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
proc_ptr_35.f90
blob
b6ca3a67b42bc4678b6a4dcca8a7884da4517148
1
! { dg-do compile }
2
!
3
! PR fortran/52542
4
!
5
! Ensure that the procedure myproc is Bind(C).
6
!
7
! Contributed by Mat Cross of NAG
8
!
9
interface
10
subroutine
s
()
bind
(
c
)
11
end subroutine
s
12
end interface
13
procedure
(
s
) ::
myproc
14
call
myproc
()
15
end
16
! { dg-final { scan-assembler-not "myproc_" } }