YJIT: Fix comment typos [ci skip]

This commit is contained in:
Edwin Garcia 2023-11-10 04:50:56 -06:00 коммит произвёл Alan Wu
Родитель 068bf59b33
Коммит 1ee6968855
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -11,13 +11,13 @@ pub static LARGE_CALL_THRESHOLD: u64 = 120;
// Number of live ISEQs after which we consider an app to be large
pub static LARGE_ISEQ_COUNT: u64 = 40_000;
// This option is exposed to the C side a a global variable for performance, see vm.c
// This option is exposed to the C side in a global variable for performance, see vm.c
// Number of method calls after which to start generating code
// Threshold==1 means compile on first execution
#[no_mangle]
pub static mut rb_yjit_call_threshold: u64 = SMALL_CALL_THRESHOLD;
// This option is exposed to the C side a a global variable for performance, see vm.c
// This option is exposed to the C side in a global variable for performance, see vm.c
// Number of execution requests after which a method is no longer
// considered hot. Raising this results in more generated code.
#[no_mangle]