URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [assumed_charlen_function_2.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! Tests the fix for PR25416, which ICED in gfc_conv_function_call, when! treating SPREAD in the statement below.!! Contributed by Ulrich Weigand <uweigand@gcc.gnu.org>function bug(self,strvec) result(res)character(*) :: selfcharacter(*), dimension(:), intent(in) :: strveclogical(kind=kind(.true.)) :: resres = any(index(strvec,spread(self,1,size(strvec))) /= 0)end function
