- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
the following (IMHO) valid code ICEs with current ifort/ifx:
program test
implicit none
integer, target :: t = 42
integer, pointer :: p, q
data p /NULL()/ ! OK
data q /t/ ! ICE with -stand
! q => t ! this is OK
print *, t, q
end
I get:
% ifort ifort-data.f90 && ./a.out
42 42
% ifort ifort-data.f90 -stand
ifort-data.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 ifort-data.f90 (code 1)
I think this is mostly self-explaining...
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I filed a bug report on this ICE, CMPLRLLVM-50040. I'll post when there's a fix.
@Harald1, you are giving -stand a workout!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This ICE is fixed in the compilers that were released in late 2023. Sorry for the delay in letting you know.

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