aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/lto/pr46629_0.f90
blob: 0b34418e7a9aed5840dc31be3f5b1f05977316b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! PR middle-end/46629
! { dg-lto-do assemble }
! { dg-lto-options {{ -O2 -flto -ftree-vectorize }} }
! { dg-lto-options {{ -O2 -flto -ftree-vectorize -march=x86-64 }} { target i?86-*-* x86_64-*-* } }

subroutine foo
  character(len=6), save :: c
  real, save :: d(0:100)
  integer, save :: x, n, i
  n = x
  print *, c
  do i = 2, n
    d(i) = -d(i-1)
  end do
end