aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/pure_formal_proc_2.f90
diff options
context:
space:
mode:
authorBen Cheng <bccheng@google.com>2014-03-25 22:37:19 -0700
committerBen Cheng <bccheng@google.com>2014-03-25 22:37:19 -0700
commit1bc5aee63eb72b341f506ad058502cd0361f0d10 (patch)
treec607e8252f3405424ff15bc2d00aa38dadbb2518 /gcc-4.9/gcc/testsuite/gfortran.dg/pure_formal_proc_2.f90
parent283a0bf58fcf333c58a2a92c3ebbc41fb9eb1fdb (diff)
downloadtoolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.tar.gz
toolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.tar.bz2
toolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.zip
Initial checkin of GCC 4.9.0 from trunk (r208799).
Change-Id: I48a3c08bb98542aa215912a75f03c0890e497dba
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gfortran.dg/pure_formal_proc_2.f90')
-rw-r--r--gcc-4.9/gcc/testsuite/gfortran.dg/pure_formal_proc_2.f9047
1 files changed, 47 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gfortran.dg/pure_formal_proc_2.f90 b/gcc-4.9/gcc/testsuite/gfortran.dg/pure_formal_proc_2.f90
new file mode 100644
index 000000000..c683a6c51
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gfortran.dg/pure_formal_proc_2.f90
@@ -0,0 +1,47 @@
+! { dg-do compile }
+! Tests the fix for PR36526, in which the call to getStrLen would
+! generate an error due to the use of a wrong symbol in interface.c
+!
+! Contributed by Bálint Aradi <aradi@bccms.uni-bremen.de>
+!
+module TestPure
+ implicit none
+
+ type T1
+ character(10) :: str
+ end type T1
+
+contains
+
+ pure function getT1Len(self) result(t1len)
+ type(T1), pointer :: self
+ integer :: t1len
+
+ t1len = getStrLen(self%str)
+
+ end function getT1Len
+
+
+ pure function getStrLen(str) result(length)
+ character(*), intent(in) :: str
+ integer :: length
+
+ length = len_trim(str)
+
+ end function getStrLen
+
+end module TestPure
+
+
+program Test
+ use TestPure
+ implicit none
+
+ type(T1), pointer :: pT1
+
+ allocate(pT1)
+ pT1%str = "test"
+ write (*,*) getT1Len(pT1)
+ deallocate(pT1)
+
+end program Test