summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/graphite/pr37857.f90
blob: de2d3a124ee9556a12dba566fb26c9c469343190 (plain)
1
2
3
4
5
6
7
8
9
! { dg-options "-O2 -floop-block" }

program superficie_proteina
  integer, parameter :: LONGreal = selected_real_kind(12,90)
  integer :: number_of_polypeptides, maximum_polypeptide_length
  real (kind = LONGreal), dimension (:,:), allocatable :: individual_conformations
  allocate (individual_conformations(-number_of_bins:0,number_of_polypeptides))
  individual_conformations = 0.0_LONGreal
end program superficie_proteina