summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-05 16:42:27 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-05 16:42:27 +0000
commit11c37ed390478393b0ba9b7afd41c92aae27ae05 (patch)
tree47767a2da8bc746b269f4df18d93f1d6814ab000 /ChangeLog
parentb0569e3dde14df7b9acc703c6a4c7325573094f5 (diff)
* compile.c (tailcallable_p): disable tail call optimization for
toplevel, eval, and load to avoid SEGV when interrupted by SIGINT. [ruby-core:76327] [Bug #12576] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 29a6001d40..2e7e03c43e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Nov 6 01:39:36 2016 Shugo Maeda <shugo@ruby-lang.org>
+
+ * compile.c (tailcallable_p): disable tail call optimization for
+ toplevel, eval, and load to avoid SEGV when interrupted by SIGINT.
+ [ruby-core:76327] [Bug #12576]
+
Sun Nov 6 01:28:41 2016 Koichi Sasada <ko1@atdot.net>
* vm_insnhelper.h: rename REG_(CFP|PC|SP|EP) to VM_REG_....