aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/where20.f90
blob: b0456500d13f9d3f905c0088003db1a030eb187f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
! Test the dependency checking in simple where. This
! did not work and was fixed as part of the patch for
! pr24519.
!
program where_20
   integer :: a(4)
   integer :: b(3)
   integer :: c(3)
   integer :: d(3) = (/1, 2, 3/)
   equivalence (a(1), b(1)), (a(2), c(1))

! This classic case worked before the patch.
   a = (/1, 2, 3, 4/)
   where (b .gt. 1) a(2:4) = a(1:3)
   if (any(a .ne. (/1,2,2,3/))) call abort ()

! This is the original manifestation of the problem
! and is repeated in where_19.f90.
   a = (/1, 2, 3, 4/)
   where (b .gt. 1)
     c = b
   endwhere
   if (any(a .ne. (/1,2,2,3/))) call abort ()

! Mask to.destination dependency.
   a = (/1, 2, 3, 4/)
   where (b .gt. 1)
     c = d
   endwhere
   if (any(a .ne. (/1,2,2,3/))) call abort ()

! Source to.destination dependency.
   a = (/1, 2, 3, 4/)
   where (d .gt. 1)
     c = b
   endwhere
   if (any(a .ne. (/1,2,2,3/))) call abort ()

! Check the simple where.
   a = (/1, 2, 3, 4/)
   where (b .gt. 1) c = b
   if (any(a .ne. (/1,2,2,3/))) call abort ()

! This was OK before the patch.
   a = (/1, 2, 3, 4/)
   where (b .gt. 1)
     where (d .gt. 1)
       c = b
     end where
   endwhere
   if (any(a .ne. (/1,2,2,3/))) call abort ()

end program