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/] [deallocate_alloc_opt_3.f90] - Rev 302

Go to most recent revision | Compare with Previous | Blame | View Log

! { dg-do run }
program a

  implicit none

  integer n
  character(len=70) e1
  character(len=30) e2
  integer, allocatable :: i(:)

  e1 = 'No error'
  allocate(i(4))
  deallocate(i, stat=n, errmsg=e1)
  if (trim(e1) /= 'No error') call abort

  e2 = 'No error'
  allocate(i(4))
  deallocate(i, stat=n, errmsg=e2)
  if (trim(e2) /= 'No error') call abort

  e1 = 'No error'
  deallocate(i, stat=n, errmsg=e1)
  if (trim(e1) /= 'Attempt to deallocate an unallocated object') call abort

  e2 = 'No error'
  deallocate(i, stat=n, errmsg=e2)
  if (trim(e2) /= 'Attempt to deallocate an unall') call abort

end program a

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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