aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/pr33074.f90
blob: 3538d6588c465d97dc557a7d0a22e6c64dfe9dff (plain)
1
2
3
4
5
6
7
8
! PR middle-end/33074
! { dg-do compile }
! { dg-options "-O" }

subroutine pr33074(a, w)
  real a(1), w(1)
  a(1) = 2.0**int(w(1))
end