URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [reshape_3.f90] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! { dg-options "-fbounds-check" }
program main
implicit none
integer, dimension(2,2) :: a4
integer(kind=1), dimension(2,2) :: a1
character(len=100) line
data a4 /1, 2, 3, 4/
a1 = a4
write (unit=line,fmt='(4I3)') reshape(a4,(/4/))
write (unit=line,fmt='(4I3)') reshape(a1,(/4/))
end program main
Go to most recent revision | Compare with Previous | Blame | View Log