summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-13 08:36:42 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-13 08:36:42 +0000
commit1619c02dd34dcc811b7d18437e8fc3f019906d1c (patch)
tree9c8951794cb1ba44f121c4d62237b53721243a82
parent0d6c9accd7f64c19ff9162e42890aba87b4f9d4e (diff)
* compile.c (insn_data_to_s_detail): remove debug lines.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--compile.c3
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index af73ef5005..307bcba411 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Nov 13 17:35:49 2012 Koichi Sasada <ko1@atdot.net>
+
+ * compile.c (insn_data_to_s_detail): remove debug lines.
+
Tue Nov 13 17:28:47 2012 Koichi Sasada <ko1@atdot.net>
* vm_insnhelper.c (vm_caller_setup_args): save and restore
diff --git a/compile.c b/compile.c
index 2f7fc1d6b4..5e79427893 100644
--- a/compile.c
+++ b/compile.c
@@ -5282,9 +5282,6 @@ insn_data_to_s_detail(INSN *iobj)
{
rb_call_info_t *ci = (rb_call_info_t *)OPERAND_AT(iobj, j);
rb_str_catf(str, "<callinfo:%s, %d>", ci->mid ? rb_id2name(ci->mid) : "", ci->orig_argc);
- if (ci->orig_argc > 60) {
- rb_bug("xyzzy");
- }
break;
}
case TS_CDHASH: /* case/when condition cache */