- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am using the newest version of intel visual fortran for programming recently.And I met a strang problem when compiling the following code.Code:
program Console4 implicit none integer, parameter::N_a = 10 real::Array_a(N_a) Array_a(1:N_a-1) = 0 end program Console4
The error message is "**Internal compiler error: internal abort** 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. " I have tried replacing theabove code with the following one:Code:
program Console4 implicit none integer, parameter::N_a=10 integer:: temp_N real::Array_a(N_a) temp_N = N_a -1 Array_a(1:temp_N) = 0 end program Console4
and then the compiling is ok. But the first code can be successfully compilied with other versions of intel fortran and Compaq visual fortran. Could anyone answer me, I'd be very thankful.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Exactly which version of Intel Visual Fortran are you using and which compiler switches are used to compile? I have not been able to reproduce this error with your code using 9.0.028.
Anytime you get this error, you have found a compiler bug, and you should send a test case and as much information as you can about reproducing the problem to Intel Premier Support.
Anytime you get this error, you have found a compiler bug, and you should send a test case and as much information as you can about reproducing the problem to Intel Premier Support.

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