mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
added "-O noinline" option to turn off ZAM inlining, to help with diagnosing optimization problems
This commit is contained in:
parent
1dc74eaa9c
commit
fadda05782
3 changed files with 12 additions and 0 deletions
|
@ -50,6 +50,11 @@ struct AnalyOpt {
|
|||
// If true, do global inlining.
|
||||
bool inliner = false;
|
||||
|
||||
// If true, suppress global inlining. A separate option because
|
||||
// it needs to override situations where "inliner" is implicitly
|
||||
// enabled due to other options.
|
||||
bool no_inliner = false;
|
||||
|
||||
// If true, report which functions are directly and indirectly
|
||||
// recursive, and exit. Only germane if running the inliner.
|
||||
bool report_recursive = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue