-noinline
When -noinline is not set (default), the optimizer attempts to inline procedures that are compiled with -opt 3 and that also meet all of the following criteria:
When set in addition to the -opt 3 option, prevents the optimizer from attempting any inlining, even when all criteria are met. See -opt for more information.
You must use -noinline with the -opt 3 compiler option.
Not set.
You may add OPTIONS(NOINLINE) to an individual PROCEDURE statement to disable inlining for specific procedures instead of compiling with the -noinline option. See PROCEDURE for more information.