mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update comments in prelude.c [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
40517422ba
commit
72ad249e54
1 changed files with 4 additions and 4 deletions
|
@ -111,14 +111,14 @@ prelude_eval(VALUE code, VALUE name, int line)
|
|||
static const rb_compile_option_t optimization = {
|
||||
TRUE, /* int inline_const_cache; */
|
||||
TRUE, /* int peephole_optimization; */
|
||||
TRUE, /* int tailcall_optimization */
|
||||
TRUE, /* int tailcall_optimization; */
|
||||
TRUE, /* int specialized_instruction; */
|
||||
TRUE, /* int operands_unification; */
|
||||
TRUE, /* int instructions_unification; */
|
||||
TRUE, /* int stack_caching; */
|
||||
FALSE, /* int trace_instruction */
|
||||
TRUE,
|
||||
FALSE,
|
||||
FALSE, /* int trace_instruction; */
|
||||
TRUE, /* int frozen_string_literal; */
|
||||
FALSE, /* int debug_frozen_string_literal; */
|
||||
};
|
||||
|
||||
NODE *node = rb_parser_compile_string_path(rb_parser_new(), name, code, line);
|
||||
|
|
Loading…
Reference in a new issue