view gcc/testsuite/gfortran.dg/predict-1.f90 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children 84e7813d76e9
line wrap: on
line source

! { 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.0%" 2 "profile_estimate" } }