summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-09 03:58:34 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-09 03:58:34 +0000
commitb52f1af0d8d9267cfb4abd5cacd41d0f75105e4e (patch)
tree55861ba08e71fa5dc088e310deb32b4e6ccea37f /compile.c
parent68c35d8bb94d2b714ef7e7f9426c4b22b1cf01a9 (diff)
* 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
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/compile.c b/compile.c
index 69abb591ce..c1ebb8fc00 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:{