mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
internal support for script optimization options for keeping asserts, not
consolidating event handlers
This commit is contained in:
parent
8b1790019a
commit
a328185a8f
2 changed files with 8 additions and 0 deletions
|
@ -57,6 +57,12 @@ struct AnalyOpt {
|
|||
// enabled due to other options.
|
||||
bool no_inliner = false;
|
||||
|
||||
// If true, when inlining skip event handler coalescence.
|
||||
bool no_eh_coalescence = false;
|
||||
|
||||
// Whether to keep or elide "assert" statements.
|
||||
bool keep_asserts = 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