Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29626 Discussions

Minor defect in syntax error reporting

mecej4
Honored Contributor III
1,407 Views

The IFort compiler 12.1.0.233, Win7, IA32 gives a correct message for the following code, but the line number reported would be more useful if it pertained to the line with the error.

[fortran]subroutine sub(x,n) integer m,n real x(n) real y(m) ! <

0 Kudos
2 Replies
Steven_L_Intel1
Employee
1,407 Views
Thanks - I agree. This has been reported to the developers as DPD200174426.
0 Kudos
Steven_L_Intel1
Employee
1,407 Views

Because of the way the compiler does the processing, it is difficult to point to the COMMON statement as a source of the error. But what we did do was reword the error message to make it clearer as to what to look for:

[plain]
t.f90(2): error #6219: This variable, used in a specification expression, must be a dummy argument,
a COMMON block object, or an object accessible through host or use association  
integer m,n
--------^
[/plain]

0 Kudos
Reply