aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
authorDaniel Franke <franke.daniel@gmail.com>2007-07-19 17:11:38 -0400
committerDaniel Franke <dfranke@gcc.gnu.org>2007-07-19 17:11:38 -0400
commit532a6e9842208aeb6eafcfce72023d1c40586605 (patch)
tree6bbc6106d8ff9ce31659d5dcfe50c1c4f1705699 /gcc/testsuite
parent972345f2c98204eb030568cf15b023d15adad345 (diff)
downloadgcc-532a6e9842208aeb6eafcfce72023d1c40586605.zip
gcc-532a6e9842208aeb6eafcfce72023d1c40586605.tar.gz
gcc-532a6e9842208aeb6eafcfce72023d1c40586605.tar.bz2
re PR fortran/32738 (Error: Function 'tree_size' at (1) has no IMPLICIT type)
2007-07-19 Daniel Franke <franke.daniel@gmail.com> PR fortran/32738 * gfortran.dg/pr32768.f90: New test. From-SVN: r126790
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gfortran.dg/pr32738.f9044
2 files changed, 49 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 43442da..3372789 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-19 Daniel Franke <franke.daniel@gmail.com>
+
+ PR fortran/32738
+ * gfortran.dg/pr32768.f90: New test.
+
2007-07-19 Thomas Koenig <tkoenig@gcc.gnu.org>
PR tree-optimzation/32635
diff --git a/gcc/testsuite/gfortran.dg/pr32738.f90 b/gcc/testsuite/gfortran.dg/pr32738.f90
new file mode 100644
index 0000000..3c413f1
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/pr32738.f90
@@ -0,0 +1,44 @@
+! { dg-do compile }
+! PR fortran/32738
+!
+! A regression that mysteriously appeared and disappeared again.
+! Added to the testsuite "just in case".
+!
+! Contributed by Michael Richmond <michael DOT a DOT richmond AT nasa DT gov>
+!
+
+module cluster_definition
+ implicit none
+ integer, parameter, public:: cluster_size = 1000
+end module cluster_definition
+module cluster_tree
+ use cluster_definition, only: ct_cluster_size => cluster_size
+ implicit none
+ private
+ private:: ct_initialize, ct_dealloc, ct_tree_size
+ public:: initialize, dealloc, tree_size
+ interface initialize
+ module procedure ct_initialize
+ end interface
+ interface dealloc
+ module procedure ct_dealloc
+ end interface
+ interface tree_size
+ module procedure ct_tree_size
+ end interface
+contains
+ subroutine ct_initialize()
+ end subroutine ct_initialize
+ subroutine ct_dealloc()
+ end subroutine ct_dealloc
+ function ct_tree_size(t) result(s)
+ integer :: t
+ integer :: s
+ s = 0
+ end function ct_tree_size
+end module cluster_tree
+program example
+ use cluster_tree
+ implicit none
+ print *, tree_size(1)
+end program example