Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
28496 Discussions

Internal compiler error: internal abort : Intel 8.0

eglez
Beginner
402 Views
Hi,

I am getting a internal compiler error when compiling a routine from Numerical Recipes. To make it simple I have written next 'simple' subroutine:

subroutine simple(data)
complex, dimension(:,:,:), intent(inout) :: data
print*,reshape(data,shape=shape(data),order=(/3,1,2/))
end subroutine simple

when compiling:

$ ifort -c simple.f90
0_2010

fortcom: Severe: **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.
in file (null), line 0, column 0

... by the way, the compilation is fine if instead of complex it uses:

real, dimension(:,:,:), intent(inout) :: data

Cheers,

Eddie.
0 Kudos
1 Reply
Steven_L_Intel1
Employee
402 Views
Please report the problem to Intel Premier Support.
0 Kudos
Reply