aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/anint_1.f90
blob: a6b92cbcd3a0091cb6204fa4e620eb7aa6a0c415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
! { dg-do run }
! Check the fix for PR33568 in which the optional KIND
! argument for ANINT, with an array for the first argument
! would cause an ICE.
!
! Contributed by Ignacio Fernández Galván <jellby@yahoo.com>
!
PROGRAM Test
  IMPLICIT NONE
  INTEGER, PARAMETER :: DP=8
  REAL(DP), DIMENSION(1:3) :: A = (/1.76,2.32,7.66/), B
  A = ANINT ( A , DP)
  B = A
  A = ANINT ( A)
  if (any (A .ne. B)) call abort ()
END PROGRAM Test