mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* expand tabs. [ci skip]
Tabs were expanded because the file did not have any tab indentation in unedited lines. Please update your editor config, and use misc/expand_tabs.rb in the pre-commit hook.
This commit is contained in:
parent
c10d5085a2
commit
c1a7e86f40
1 changed files with 11 additions and 11 deletions
|
@ -24,17 +24,17 @@ builtin_iseq_load(const char *feature_name, const struct rb_builtin_function *ta
|
||||||
vm->builtin_function_table = table;
|
vm->builtin_function_table = table;
|
||||||
vm->builtin_inline_index = 0;
|
vm->builtin_inline_index = 0;
|
||||||
static const rb_compile_option_t optimization = {
|
static const rb_compile_option_t optimization = {
|
||||||
TRUE, /* int inline_const_cache; */
|
TRUE, /* int inline_const_cache; */
|
||||||
TRUE, /* int peephole_optimization; */
|
TRUE, /* int peephole_optimization; */
|
||||||
FALSE,/* int tailcall_optimization; */
|
FALSE,/* int tailcall_optimization; */
|
||||||
TRUE, /* int specialized_instruction; */
|
TRUE, /* int specialized_instruction; */
|
||||||
TRUE, /* int operands_unification; */
|
TRUE, /* int operands_unification; */
|
||||||
TRUE, /* int instructions_unification; */
|
TRUE, /* int instructions_unification; */
|
||||||
TRUE, /* int stack_caching; */
|
TRUE, /* int stack_caching; */
|
||||||
TRUE, /* int frozen_string_literal; */
|
TRUE, /* int frozen_string_literal; */
|
||||||
FALSE, /* int debug_frozen_string_literal; */
|
FALSE, /* int debug_frozen_string_literal; */
|
||||||
FALSE, /* unsigned int coverage_enabled; */
|
FALSE, /* unsigned int coverage_enabled; */
|
||||||
0, /* int debug_level; */
|
0, /* int debug_level; */
|
||||||
};
|
};
|
||||||
const rb_iseq_t *iseq = rb_iseq_new_with_opt(&ast->body, name_str, name_str, Qnil, INT2FIX(0), NULL, 0, ISEQ_TYPE_TOP, &optimization);
|
const rb_iseq_t *iseq = rb_iseq_new_with_opt(&ast->body, name_str, name_str, Qnil, INT2FIX(0), NULL, 0, ISEQ_TYPE_TOP, &optimization);
|
||||||
GET_VM()->builtin_function_table = NULL;
|
GET_VM()->builtin_function_table = NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue