Sun Studio 12 Update 1: Fortran User's Guide

4.8.2 FIXED and FREE Directives

These directives specify the source form of lines following the directive line.

4.8.2.1 Scope

They apply to the rest of the file in which they appear, or until the next FREE or FIXED directive is encountered.

4.8.2.2 Uses

4.8.2.3 Restrictions

The FREE/FIXED directives:

Example: A FREE directive.


!DIR$ FREE
    DO i = 1, n
        a(i) = b(i) * c(i)
    END DO