- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
program p
implicit none
integer :: i(1)
asc_1: associate ( j => i )
asc_2: associate ( k => j )
end associate asc_2
end associate asc_1
stop
end program p
------ Build started: Project: p, Configuration: Debug|x64 ------ Compiling with Intel(R) Visual Fortran Compiler XE 15.0.2.179 [Intel(R) 64]... p.f90 fortcom: Fatal: There has been an internal compiler error (C0000005). compilation aborted for C:\..\p.f90 (code 1)
Link Copied
5 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks - it's the /debug option that triggers the error. Escalated as issue DPD200368468.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, Steve.
By the way, the variation shown below gives an ICE with both Debug and Release configurations as well as IA-32 and Intel 64 architecture specifications:
program p
implicit none
integer :: i(1)
asc_1: associate ( j => i )
asc_2: associate ( k => j )
k = 0
end associate asc_2
end associate asc_1
stop
end program p
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks - duly noted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I expect the fix for this to be in the final 16.0 release.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Excellent, thanks.
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