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

ice with openmp and ifort 11.1

MR
Beginner
793 Views
Dear group,
the attached code produces an internal compiler error with the new
11.1 version of ifort, older versions are fine.

Best regards
Marco Restelli


ifort -openmp -c my_mod.f90
: catastrophic error: **Internal compiler error: segmentation violation signal raised** 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 my_mod.f90 (code 3)


ifort -V
Intel Fortran Intel 64 Compiler Professional for applications
running on Intel 64, Version 11.1 Build 20090511
Copyright (C) 1985-2009 Intel Corporation. All rights reserved.


module my_mod

implicit none
private

contains

subroutine sub( cck )
real, intent(out), allocatable :: cck(:)

!$omp parallel private(cck)
!$omp end parallel

end subroutine sub

end module my_mod

0 Kudos
3 Replies
Steven_L_Intel1
Employee
793 Views
I can reproduce this and will report it to the developers. Issue ID is DPD200137805 . Thanks for letting us know.
0 Kudos
Steven_L_Intel1
Employee
793 Views
I expect the fix for this issue to appear in Update 6, scheduled for April.
0 Kudos
Steven_L_Intel1
Employee
793 Views
This issue is fixed in Update 6, available now.
0 Kudos
Reply