aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_merge.f90
blob: b4fc18f4dd6a8008c37434441c1847a8e7e20086 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! Program to test the MERGE intrinsic
program intrinsic_merge
   integer, dimension(3) :: a, b
   integer i

   a = (/-1, 2, 3/)

   i = 5
   if (merge (-1, 1, i .gt. 3) .ne. -1) call abort
   i = 1
   if (merge (-1, 1, i .ge. 3) .ne. 1) call abort

   b = merge(a, 0, a .ge. 0)
   if (any (b .ne. (/0, 2, 3/))) call abort
end program