Hi all,
I see and ICE when compiling the following code with -standard-semantics :
$ ifort -standard-semantics -c ice.f90
010101_13220
catastrophic error: **Internal compiler error: internal abort** Please report this error along with the circumstances in which it occurred in a Software Problem Report. Note: File and line given may not be explicit cause of this error.
compilation aborted for ice.f90 (code 1)
$ ifort -V
Intel(R) Fortran Intel(R) 64 Compiler XE for applications running on Intel(R) 64, Version 14.0 Build 20131008
Copyright (C) 1985-2013 Intel Corporation. All rights reserved.
module test
implicit none
contains
subroutine mv_r(y)
real, intent(inout) :: y(:)
complex, allocatable :: cy(:)
allocate(cy(size(y)))
cy = cmplx(y,0.0)
end subroutine mv_r
end module test