From 72ad249e54505d55be266ff239deba42d0e31ea9 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 18 Oct 2016 15:40:31 +0000 Subject: Update comments in prelude.c [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- template/prelude.c.tmpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/template/prelude.c.tmpl b/template/prelude.c.tmpl index 06fef15e0d..873146fc39 100644 --- a/template/prelude.c.tmpl +++ b/template/prelude.c.tmpl @@ -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); -- cgit v1.2.3