IntelĀ® Fortran Compiler 18.0 Developer Guide and Reference

ATTRIBUTES MIXED_STR_LEN_ARG and NOMIXED_STR_LEN_ARG

These ATTRIBUTES directive options specify where hidden lengths for character arguments and character-valued functions should be placed. MIXED_STR_LEN_ARG specifies that hidden lengths for character arguments and character-valued functions should be placed immediately following the argument address in the argument list. NOMIXED_STR_LEN_ARG specifies that these hidden lengths should be placed in sequential order at the end of the argument list.

!DIR$ ATTRIBUTES MIXED_STR_LEN_ARG :: args

!DIR$ ATTRIBUTES NOMIXED_STR_LEN_ARG :: args

args

Is a list of arguments.

The default is NOMIXED_STR_LEN_ARG. However, If you specify compiler option /iface:CVF or /iface:mixed_str_len_arg (Windows*), or compiler option -mixed-str-len-arg (Linux* and macOS*), the default is MIXED_STR_LEN_ARG.

See Also