aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-18 15:40:31 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-18 15:40:31 +0000
commitd4804fc039a79113ad6ca1c1d10fc8648ea000ca (patch)
tree7c4a4a64b284a609c6d0bea11b7d9f83db5e4f43 /template
parent7a028e84e2df0a49e89f9605af846e017d327c44 (diff)
downloadruby-d4804fc039a79113ad6ca1c1d10fc8648ea000ca.tar.gz
Update comments in prelude.c [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'template')
-rw-r--r--template/prelude.c.tmpl8
1 files 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);