- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Consider the following simple Fortran program:
program testNamedIfBlock implicit none integer :: i, counter test: if (.true.) then write(*,*) 'Hello World!' exit test else test end if test end program testNamedIfBlock
Compiling this code with Intel's ifort compiler 2018 on both Linux and Windows leads to internal compiler error:
$ifort main.f90 -o a.out main.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 main.f90 (code 1)
Commenting the line
exit test
leads to error-free successful compilation of the code. Is this a compiler bug, or is it simply because named if block is not yet supported in ifort? It looks like the named BLOCK constructs are already supported, so it seems an oddity if named IF constructs are not yet supported.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
An internal compiler error is always a compiler bug.
You could lodge a support ticket for this, though it has been reported previously. The error still exists in the current beta.
(Named constructs have been around since Fortran 90, it the ability to name them in an exit statement that is new.)

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page