Merged revision 156805 into branch.
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_function_5.f90
blob05f3c92d02bc93050f1eef74ae4b2d165ccdff35
1 ! { dg-do run )
2 ! PR41278 internal compiler error related to matmul and transpose
3 ! Test case prepared by Jerry DeLisle <jvdelisle@gcc.gnu.org>
4 ! Original test case by Chris <cmklaij@hetnet.nl>
5 program bug
6 implicit none
7 real, dimension(3,3) :: matA,matB,matC
9 matA(1,:)=(/1., 2., 3./)
10 matA(2,:)=(/4., 5., 6./)
11 matA(3,:)=(/7., 8., 9./)
13 matB=matmul(transpose(0.5*matA),matA)
14 matC = transpose(0.5*matA)
15 matC = matmul(matC, matA)
16 if (any(matB.ne.matC)) call abort()
17 end program bug