mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Add --yjit-no-type-prop so we can test YJIT without type propagation (#5135)
* Add --yjit-no-type-prop so we can test YJIT without type propagation * Fix typo in command line option * Leave just two test workflows enable for YJIT
This commit is contained in:
parent
f3dcb4bbf7
commit
cdebf57ec6
Notes:
git
2021-11-19 00:45:02 +09:00
Merged-By: maximecb <maximecb@ruby-lang.org>
7 changed files with 40 additions and 4 deletions
3
yjit.h
3
yjit.h
|
@ -29,6 +29,9 @@ struct rb_yjit_options {
|
|||
// Generate versions greedily until the limit is hit
|
||||
bool greedy_versioning;
|
||||
|
||||
// Disable the propagation of type information
|
||||
bool no_type_prop;
|
||||
|
||||
// Maximum number of versions per block
|
||||
// 1 means always create generic versions
|
||||
unsigned max_versions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue