diff options
author | yui-knk <[email protected]> | 2023-06-18 10:13:02 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2023-06-18 14:39:15 +0900 |
commit | 1740482d06a477a712bb6af44d909e524cb8e9e7 () | |
tree | 24c75d14d2a52da7ded13a289af159a03c0c384a /mini_builtin.c | |
parent | 7adab819074e448ffbb6e8d99e4edb0567e4405a (diff) |
Fix rb_compile_option_t comments [ci skip]
Notes: Merged: https://.com/ruby/ruby/pull/7954
-rw-r--r-- | mini_builtin.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -29,15 +29,15 @@ builtin_iseq_load(const char *feature_name, const struct rb_builtin_function *ta vm->builtin_function_table = table; vm->builtin_inline_index = 0; static const rb_compile_option_t optimization = { - TRUE, /* int inline_const_cache; */ - TRUE, /* int peephole_optimization; */ - FALSE,/* int tailcall_optimization; */ - TRUE, /* int specialized_instruction; */ - TRUE, /* int operands_unification; */ - TRUE, /* int instructions_unification; */ - TRUE, /* int stack_caching; */ - TRUE, /* int frozen_string_literal; */ - FALSE, /* int debug_frozen_string_literal; */ FALSE, /* unsigned int coverage_enabled; */ 0, /* int debug_level; */ }; |