Intel® Fortran Compiler XE 13.1 User and Reference Guides
Determines whether additional interprocedural optimizations for single-file compilation are enabled.
Windows: Optimization > Interprocedural Optimization
Linux: None
OS X: None
All
Linux and OS X: | -ip -no-ip |
Windows: | /Qip /Qip- |
None
OFF |
Some limited interprocedural optimizations occur, including inline function expansion for calls to functions defined within the current source file. These optimizations are a subset of full intra-file interprocedural optimizations. Note that this setting is not the same as -no-ip (Linux* OS and OS X*) or /Qip- (Windows* OS). |
This option determines whether additional interprocedural optimizations for single-file compilation are enabled.
Options -ip (Linux OS and OS X) and /Qip (Windows OS) enable additional interprocedural optimizations for single-file compilation.
Options -no-ip (Linux OS and OS X) and /Qip- (Windows OS) may not disable inlining. To ensure that inlining of user-defined functions is disabled, specify -inline-level=0or -fno-inline (Linux OS and OS X), or specify /Ob0 (Windows OS).
None