Intel® Fortran Compiler 16.0 User and Reference Guide

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* OS), or compiler option -mixed-str-len-arg (Linux* OS and OS X*), the default is MIXED_STR_LEN_ARG.

See Also