Intel® C++ Compiler 16.0 User and Reference Guide
Determines whether the compiler always pops the arguments to each function call as soon as that function returns.
Linux and OS X: | -fdefer-pop -fno-defer-pop |
Windows: | None |
None
-fdefer-pop |
The compiler uses default optimizations that may result in deferred clearance of the stack arguments. |
This option determines whether the compiler always pops the arguments to each function call as soon as that function returns.
If you want the compiler to always pop the arguments to each function call as soon as that function returns, specify -fno-defer-pop.
For processors that must pop arguments after a function call, the compiler normally lets arguments accumulate on the stack for several function calls and pops them all at once.
None