aboutsummaryrefslogtreecommitdiffstats
path: root/template/prelude.c.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/prelude.c.tmpl')
-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);