aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/pr43229.f90
blob: 361ea94559ec5c32756118f0c437bf3f22fd768b (plain)
1
2
3
4
5
6
7
8
9
10
! PR debug/43229
! { dg-do compile }
! { dg-options "-g -O3 -ffast-math" }
! { dg-options "-g -O3 -ffast-math -msse3" { target { i?86-*-* x86_64-*-* } } }

function foo (c, d)
  real(8) :: c(6), d(6), foo
  x = sum (c * d)
  foo = exp (-x)
end function foo