summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/bind_c_usage_10.f03
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gfortran.dg/bind_c_usage_10.f03
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gfortran.dg/bind_c_usage_10.f03')
-rw-r--r--gcc/testsuite/gfortran.dg/bind_c_usage_10.f0375
1 files changed, 75 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/bind_c_usage_10.f03 b/gcc/testsuite/gfortran.dg/bind_c_usage_10.f03
new file mode 100644
index 000000000..4f2268aee
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/bind_c_usage_10.f03
@@ -0,0 +1,75 @@
+! { dg-do run }
+! { dg-additional-sources bind_c_usage_10_c.c }
+!
+! PR fortran/34079
+!
+! Check BIND(C) for ENTRY
+!
+module mod
+ use iso_c_binding
+ implicit none
+contains
+ subroutine sub1(j) bind(c, name="mySub1")
+ integer(c_int) :: j
+ real(c_float) :: x
+ j = 5
+ return
+ entry sub1ent(x)
+ x = 55.0
+ end subroutine sub1
+ subroutine sub2(j)
+ integer(c_int) :: j
+ real(c_float) :: x
+ j = 6
+ return
+ entry sub2ent(x) bind(c, name="mySubEnt2")
+ x = 66.0
+ end subroutine sub2
+ subroutine sub3(j) bind(c, name="mySub3")
+ integer(c_int) :: j
+ real(c_float) :: x
+ j = 7
+ return
+ entry sub3ent(x) bind(c, name="mySubEnt3")
+ x = 77.0
+ end subroutine sub3
+ subroutine sub4(j)
+ integer(c_int) :: j
+ real(c_float) :: x
+ j = 8
+ return
+ entry sub4ent(x) bind(c)
+ x = 88.0
+ end subroutine sub4
+
+ integer(c_int) function func1() bind(c, name="myFunc1")
+ real(c_float) :: func1ent
+ func1 = -5
+ return
+ entry func1ent()
+ func1ent = -55.0
+ end function func1
+ integer(c_int) function func2()
+ real(c_float) :: func2ent
+ func2 = -6
+ return
+ entry func2ent() bind(c, name="myFuncEnt2")
+ func2ent = -66.0
+ end function func2
+ integer(c_int) function func3() bind(c, name="myFunc3")
+ real(c_float) :: func3ent
+ func3 = -7
+ return
+ entry func3ent() bind(c, name="myFuncEnt3")
+ func3ent = -77.0
+ end function func3
+ integer(c_int) function func4()
+ real(c_float) :: func4ent
+ func4 = -8
+ return
+ entry func4ent() bind(c)
+ func4ent = -88.0
+ end function func4
+end module mod
+
+! { dg-final { cleanup-modules "mod" } }