internal support for script optimization options for keeping asserts, not

consolidating event handlers
This commit is contained in:
Vern Paxson 2024-12-03 10:35:35 -07:00
parent 8b1790019a
commit a328185a8f
2 changed files with 8 additions and 0 deletions

View file

@ -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;