OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [unpack_bounds_3.f90] - Diff between revs 302 and 384

Only display areas with differences | Details | Blame | View Log

Rev 302 Rev 384
! { dg-do run }
! { dg-do run }
! { dg-options "-fbounds-check" }
! { dg-options "-fbounds-check" }
! { dg-shouldfail "Incorrect size of return value in UNPACK intrinsic: should be at least 3, is 2" }
! { dg-shouldfail "Incorrect size of return value in UNPACK intrinsic: should be at least 3, is 2" }
program main
program main
  integer, allocatable, dimension(:) :: vector
  integer, allocatable, dimension(:) :: vector
  integer, allocatable, dimension(:,:) :: res
  integer, allocatable, dimension(:,:) :: res
  integer, allocatable, dimension(:,:) :: field
  integer, allocatable, dimension(:,:) :: field
  logical, allocatable, dimension(:,:) :: mask
  logical, allocatable, dimension(:,:) :: mask
  allocate (vector(3))
  allocate (vector(3))
  allocate (mask(2,2))
  allocate (mask(2,2))
  allocate (res(2,2))
  allocate (res(2,2))
  allocate (field(3,2))
  allocate (field(3,2))
  vector = 1
  vector = 1
  field = 0
  field = 0
  mask = reshape((/ .TRUE., .TRUE., .FALSE., .TRUE. /),(/2,2/))
  mask = reshape((/ .TRUE., .TRUE., .FALSE., .TRUE. /),(/2,2/))
  res = unpack(vector, mask, field)
  res = unpack(vector, mask, field)
  print *,res
  print *,res
end program main
end program main
! { dg-output "Fortran runtime error: Incorrect extent in FIELD of UNPACK intrinsic in dimension 1: is 3, should be 2" }
! { dg-output "Fortran runtime error: Incorrect extent in FIELD of UNPACK intrinsic in dimension 1: is 3, should be 2" }
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.