"-O compile-all" option to specify compilation of inlined functions

This commit is contained in:
Vern Paxson 2021-06-01 09:24:17 -07:00
parent 7855557e92
commit b5b58b0a3a
3 changed files with 13 additions and 3 deletions

View file

@ -61,6 +61,11 @@ struct AnalyOpt {
// If true, use C++ bodies if available.
bool use_CPP = false;
// If true, compile all compileable functions, even those that
// are inlined. Mainly useful for ensuring compatibility for
// some tests in the test suite.
bool compile_all = false;
// If true, report on available C++ bodies.
bool report_CPP = false;