Intel® Fortran Compiler

Developer Guide and Reference

ID 767251
Date 6/30/2025
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

vec-assume-index-overflow, Qvec-assume-index-overflow

Toggles between modes, with the less conservative mode as the default.

Syntax

Linux:

-vec-assume-index-overflow

-no-vec-assume-index-overflow

Windows:

/Qvec-assume-index-overflow

/Qvec-assume-index-overflow-

Arguments

None

Default

Less conservative mode

This option toggles between modes, leaving the less conservative mode on by default.

Description

When this option is set, assume overflow of integer indices may happen, disabling additional optimization of loads and stores.

IDE Equivalent

None

Alternate Options

None

Examples

The following shows examples of using this option.

Linux

ifx -O2 -c -fno-vec-assume-index-overflow test.f90 -o test.o
ifx -O2 -c -fvec-assume-index-overflow test.f90 -o test.o