(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
predict-1.f90
! { dg-do compile }
! { dg-options "-O2 -fdump-tree-profile_estimate" }

subroutine test(block, array)
integer :: i, block(9), array(2)

do i = array(1), array(2), 2
    block(i) = i
end do

do i = array(1), array(2), -2
    block(i) = block(i) + i
end do

end subroutine test

! { dg-final { scan-tree-dump-times "Fortran loop preheader heuristics of edge\[^:\]*: 1.00%" 2 "profile_estimate" } }