From b52f1af0d8d9267cfb4abd5cacd41d0f75105e4e Mon Sep 17 00:00:00 2001 From: shugo Date: Fri, 9 Oct 2015 03:58:34 +0000 Subject: * compile.c (iseq_compile_each): Dynamic string literals (e.g., "#{x}") should not be frozen because they don't literally represent strings. https://twitter.com/shugomaeda/status/651937650027401216 https://twitter.com/yukihiro_matz/status/651942882312482817 https://twitter.com/yukihiro_matz/status/651980835181096960 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52087 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 69abb59..c1ebb8f 100644 --- a/compile.c +++ b/compile.c @@ -5059,11 +5059,6 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped) if (poped) { ADD_INSN(ret, line, pop); } - else { - if (iseq->compile_data->option->frozen_string_literal) { - ADD_SEND (ret, line, idFreeze, INT2FIX(0)); - } - } break; } case NODE_XSTR:{ -- cgit v1.1