PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / transfer_simplify_9.f90
blobf677426a6d0bc9e629b9d914e0678d41a076ceba
1 ! { dg-do run }
3 ! Various checks on simplification of TRANSFER of substrings
4 character(len=4), parameter :: t = "xyzt"
5 integer, parameter :: w = transfer(t,0)
6 integer :: i = 1
7 if (transfer(t,0) /= w) STOP 1
8 if (transfer(t(:),0) /= w) STOP 2
9 if (transfer(t(1:4),0) /= w) STOP 3
10 if (transfer(t(i:i+3),0) /= w) STOP 4
12 if (transfer(t(1:1), 0_1) /= transfer("x", 0_1)) STOP 5
13 if (transfer(t(2:2), 0_1) /= transfer("y", 0_1)) STOP 6
14 if (transfer(t(i:i), 0_1) /= transfer("x", 0_1)) STOP 7
15 if (transfer(t(i+1:i+1), 0_1) /= transfer("y", 0_1)) STOP 8
16 if (transfer(t(1:2), 0_2) /= transfer("xy", 0_2)) STOP 9
17 if (transfer(t(3:4), 0_2) /= transfer("zt", 0_2)) STOP 10
19 if (transfer(transfer(-1, t), 0) /= -1) STOP 11
20 if (transfer(transfer(-1, t(:)), 0) /= -1) STOP 12
21 if (any (transfer(transfer(-1, (/t(1:1)/)), (/0_1/)) /= -1)) STOP 13
22 if (transfer(transfer(-1, t(1:1)), 0_1) /= -1) STOP 14
23 end