Intel® Fortran Compiler 17.0 Developer Guide and Reference

fasynchronous-unwind-tables

Determines whether unwind information is precise at an instruction boundary or at a call boundary.

Syntax

Linux and macOS:

-fasynchronous-unwind-tables

-fno-asynchronous-unwind-tables

Windows:

None

Arguments

None

Default

Intel® 64 architecture: -fasynchronous-unwind-tables

The unwind table generated is precise at an instruction boundary, enabling accurate unwinding at any instruction.

IA-32 architecture: -fno-asynchronous-unwind-tables

The unwind table generated is precise at call boundaries only.

Description

This option determines whether unwind information is precise at an instruction boundary or at a call boundary. The compiler generates an unwind table in DWARF2 or DWARF3 format, depending on which format is supported on your system.

If -fno-asynchronous-unwind-tables is specified, the unwind table is precise at call boundaries only. In this case, the compiler will avoid creating unwind tables for routines such as the following:

IDE Equivalent

None

Alternate Options

None

See Also