arm: Use LDMIA/STMIA for thumb1 DI/DF loads/stores
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / where_14.f90
blobf02b73ef698f1ac8ca52baeddd60f766b8c1cb71
1 ! Check whether an empty ELSEWHERE works
2 program where_14
3 integer :: a(5)
4 integer :: b(5)
6 a = (/1, 2, 3, 4, 5/)
7 b = (/0, 0, 0, 0, 0/)
8 where (a .eq. 1)
9 b = 3
10 elsewhere
11 endwhere
12 if (any (b .ne. (/3, 0, 0, 0, 0/))) &
13 STOP 1
14 end program