1
Fork 0

Add inline-llvm option for disabling/enabling LLVM inlining

This commit is contained in:
Yan Chen 2022-08-08 16:58:27 -07:00
parent 24d6992020
commit 052887e4b4
3 changed files with 7 additions and 0 deletions

View file

@ -1345,6 +1345,8 @@ options! {
"hash spans relative to their parent item for incr. comp. (default: no)"),
incremental_verify_ich: bool = (false, parse_bool, [UNTRACKED],
"verify incr. comp. hashes of green query instances (default: no)"),
inline_llvm: bool = (true, parse_bool, [TRACKED],
"enable LLVM inlining (default: yes)"),
inline_mir: Option<bool> = (None, parse_opt_bool, [TRACKED],
"enable MIR inlining (default: no)"),
inline_mir_threshold: Option<usize> = (None, parse_opt_number, [TRACKED],