Retro68/gcc/gcc/testsuite/gfortran.dg/predict-1.f90
Wolfgang Thaller 6fbf4226da gcc-9.1
2019-06-20 20:10:10 +02:00

18 lines
397 B
Fortran

! { 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" } }