view gcc/testsuite/gfortran.dg/transpose_reshape_r10.f90 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do run }
! { dg-require-effective-target fortran_large_real }
program main
  integer,parameter :: k = selected_real_kind (precision (0.0_8) + 1)
  character(len=90) line
  real(k) :: a(3,3)
  real(k) :: b(9)
  a = 1.0_k
  a(1,3) = 0.0_k
  write (line,'(9G10.6)') transpose(a)
  write (line,'(9G10.6)') reshape(a,shape(b))
end