lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr101158.f90
blob9a4d9a2d7aecf8c2f1c1f96adc7a6c19f716e4af
1 ! { dg-do compile }
2 ! { dg-options "-O1 -ftree-slp-vectorize -fwrapv" }
3 ! { dg-additional-options "-march=armv8-a+sve" { target aarch64-*-* } }
5 subroutine sprpl5 (left)
6 implicit none
8 integer :: left
9 integer :: avail1, avail2, delx1, delx2, i2, ic
11 ic = left
12 delx1 = ic / 2
13 delx2 = delx1 + 1
14 i2 = ic + delx2
15 avail1 = i2
16 avail2 = 1
18 do delx1 = 1, 2
19 ic = left + nint (real (left) / 2)
20 if (ic .ge. avail1) avail1 = ic + 1
22 i2 = ic + delx2
23 if (i2 .le. avail2) avail2 = i2 + 1
24 end do
25 end subroutine sprpl5