- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
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)
링크가 복사됨
5 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Thanks - it's the /debug option that triggers the error. Escalated as issue DPD200368468.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
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
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
I expect the fix for this to be in the final 16.0 release.