From: Mikael Morin Date: Mon, 24 Nov 2008 12:37:25 +0000 (+0100) Subject: re PR fortran/35681 (wrong result for vector subscripted array expression in MVBITS) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b19c351a4f1dc42504e2867883f71f7bd122cbb;p=gcc.git re PR fortran/35681 (wrong result for vector subscripted array expression in MVBITS) 2008-11-24 Mikael Morin PR fortran/35681 * gfortran.dg/elemental_dependency_1.f90: Really commit it. From-SVN: r142155 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1ccc57336a7..734759df2a5 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-11-24 Mikael Morin + + PR fortran/35681 + * gfortran.dg/elemental_dependency_1.f90: Really commit it. + 2008-11-24 Paul Thomas PR fortran/34820 diff --git a/gcc/testsuite/gfortran.dg/elemental_dependency_1.f90 b/gcc/testsuite/gfortran.dg/elemental_dependency_1.f90 new file mode 100644 index 00000000000..3e1f67b9a71 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/elemental_dependency_1.f90 @@ -0,0 +1,83 @@ +! { dg-do run } +! { dg-options "-fdump-tree-original" } +! +! PR fortran/35681 +! Test the use of temporaries in case of elemental subroutines. + +PROGRAM main + IMPLICIT NONE + INTEGER, PARAMETER :: sz = 5 + INTEGER :: i + INTEGER :: a(sz) = (/ (i, i=1,sz) /) + INTEGER :: b(sz) + + b = a + CALL double(a(sz-b+1), a) ! { dg-warning "might interfere with actual" } + ! Don't check the result, as the above is invalid + ! and might produce unexpected results (overlapping vector subscripts). + + + b = a + CALL double (a, a) ! same range, no temporary + IF (ANY(a /= 2*b)) CALL abort + + + b = a + CALL double (a+1, a) ! same range, no temporary + IF (ANY(a /= 2*b+2)) CALL abort + + + b = a + CALL double ((a(1:sz)), a(1:sz)) ! same range, no temporary + IF (ANY(a /= 2*b)) CALL abort + + + b = a + CALL double(a(1:sz-1), a(2:sz)) ! { dg-warning "might interfere with actual" } + ! Don't check the result, as the above is invalid, + ! and might produce unexpected results (arguments overlap). + + + b = a + CALL double((a(1:sz-1)), a(2:sz)) ! paren expression, temporary created +! { dg-final { scan-tree-dump-times "A\.17\\\[4\\\]" 1 "original" } } + + IF (ANY(a /= (/ b(1), (2*b(i), i=1,sz-1) /))) CALL abort + + + b = a + CALL double(a(1:sz-1)+1, a(2:sz)) ! op expression, temporary created +! { dg-final { scan-tree-dump-times "A\.26\\\[4\\\]" 1 "original" } } + + IF (ANY(a /= (/ b(1), (2*b(i)+2, i=1,sz-1) /))) CALL abort + + + b = a + CALL double(self(a), a) ! same range, no temporary + IF (ANY(a /= 2*b)) CALL abort + + + b = a + CALL double(self(a(1:sz-1)), a(2:sz)) ! function expr, temporary created +! { dg-final { scan-tree-dump-times "A\.38\\\[4\\\]" 1 "original" } } + + IF (ANY(a /= (/ b(1), (2*b(i), i=1,sz-1) /))) CALL abort + + +CONTAINS + ELEMENTAL SUBROUTINE double(a, b) + IMPLICIT NONE + INTEGER, INTENT(IN) :: a + INTEGER, INTENT(OUT) :: b + b = 2 * a + END SUBROUTINE double + ELEMENTAL FUNCTION self(a) + IMPLICIT NONE + INTEGER, INTENT(IN) :: a + INTEGER :: self + self = a + END FUNCTION self +END PROGRAM main + +! { dg-final { scan-tree-dump-times "_gfortran_internal_unpack" 3 "original" } } +! { dg-final { cleanup-tree-dump "original" } }