diff options
author | Tobias Burnus <burnus@net-b.de> | 2011-05-31 20:40:55 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2011-05-31 20:40:55 +0200 |
commit | d73b65b6dbed146ca88c93a183eae1cbe7b430b1 (patch) | |
tree | 4b923cc8e159fecaef06728ba93216f4f175820c /gcc/testsuite/gfortran.dg | |
parent | 9f3761c527c003969c4f18497876c4d18b5f2305 (diff) | |
download | gcc-d73b65b6dbed146ca88c93a183eae1cbe7b430b1.zip gcc-d73b65b6dbed146ca88c93a183eae1cbe7b430b1.tar.gz gcc-d73b65b6dbed146ca88c93a183eae1cbe7b430b1.tar.bz2 |
re PR fortran/18918 (Eventually support Fortran 2008's coarrays [co-arrays])
2011-05-31 Tobias Burnus <burnus@net-b.de>
PR fortran/18918
* trans-array.c (gfc_trans_dummy_array_bias): Handle
cobounds of assumed-shape arrays.
2011-05-31 Tobias Burnus <burnus@net-b.de>
PR fortran/18918
* gfortran.dg/coarray/dummy_1.f90: New.
From-SVN: r174504
Diffstat (limited to 'gcc/testsuite/gfortran.dg')
-rw-r--r-- | gcc/testsuite/gfortran.dg/coarray/dummy_1.f90 | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/coarray/dummy_1.f90 b/gcc/testsuite/gfortran.dg/coarray/dummy_1.f90 new file mode 100644 index 0000000..8e4b7d7 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/coarray/dummy_1.f90 @@ -0,0 +1,70 @@ +! { dg-do run } +! +! PR fortran/18918 +! +! Check whether assumed-shape's cobounds are properly handled +! + implicit none + integer :: B(1)[*] + integer :: C(8:11)[-3:10,43:*] + integer, allocatable :: D(:)[:,:] + + allocate (D(20)[2:3,5:*]) + + call sub (B,5) + call sub (C,3) + call sub (D,3) + + call sub2 (B, -3) + call sub2 (C, 44) + call sub2 (D, 44) + + call sub3 (B) + call sub3 (C) + call sub3 (D) + + call sub4 (B) + call sub4 (C) + call sub4 (D) + + call sub5 (D) + contains + + subroutine sub(A,n) + integer :: n + integer :: A(n:)[n:2*n,3*n:*] + if (lbound(A,dim=1) /= n) call abort () + if (any (lcobound(A) /= [n, 3*n])) call abort () + if (ucobound(A, dim=1) /= 2*n) call abort() + end subroutine sub + + subroutine sub2(A,n) + integer :: n + integer :: A(:)[-n:*] + if (lbound(A,dim=1) /= 1) call abort () + if (lcobound(A, dim=1) /= -n) call abort () + end subroutine sub2 + + subroutine sub3(A) + integer :: A(:)[0,*] + if (lbound(A,dim=1) /= 1) call abort () + if (lcobound(A, dim=1) /= 1) call abort () + if (ucobound(A, dim=1) /= 0) call abort () + if (lcobound(A, dim=2) /= 1) call abort () + end subroutine sub3 + + subroutine sub4(A) + integer :: A(:)[*] + if (lbound(A,dim=1) /= 1) call abort () + if (lcobound(A, dim=1) /= 1) call abort () + end subroutine sub4 + + subroutine sub5(A) + integer, allocatable :: A(:)[:,:] + + if (lbound(A,dim=1) /= 1) call abort () + if (lcobound(A, dim=1) /= 2) call abort () + if (ucobound(A, dim=1) /= 3) call abort () + if (lcobound(A, dim=2) /= 5) call abort () + end subroutine sub5 + end |