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

Compiler Bug

CLIVE_J_
Beginner
266 Views

I have found a bug in Intel Fortran for Unix 15.0.1

This code which should produce a simple syntax error message

PROGRAM MAIN

IMPLICIT NONE

REAL :: A = 5.0

CALL SUB1(A)  ()


END
SUBROUTINE SUB1(A)

IMPLICIT NONE

WRITE(*,*) 'Value is ',A

RETURN
END

actually crashes the compiler with a segmentation error

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.

 

 

 

0 Kudos
4 Replies
Steven_L_Intel1
Employee
266 Views

Thanks, I'll let the developers know.

0 Kudos
Steven_L_Intel1
Employee
266 Views

Escalated as issue DPD200381840.

0 Kudos
Steven_L_Intel1
Employee
266 Views

Fixed for a future release.

0 Kudos
CLIVE_J_
Beginner
266 Views

Thanks Steve

Clive

0 Kudos
Reply