aboutsummaryrefslogtreecommitdiffstats
path: root/insns.def
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-27 00:57:16 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-27 00:57:16 +0000
commitb2371666a092525f2b27c369a44f6ce67b72bb0f (patch)
treeb3b2da4eb757e9ebc786197ee96bf96ba9836a6c /insns.def
parent220be59284756ec9dd24c1c5e1769c3e3a09843f (diff)
downloadruby-b2371666a092525f2b27c369a44f6ce67b72bb0f.tar.gz
move function declarations from insns.def to internal.h
Just avoid being loose. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63755 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def3
1 files changed, 0 insertions, 3 deletions
diff --git a/insns.def b/insns.def
index cac337423f..91ae4563f0 100644
--- a/insns.def
+++ b/insns.def
@@ -375,7 +375,6 @@ tostring
(VALUE val, VALUE str)
(VALUE val)
{
- VALUE rb_obj_as_string_result(VALUE str, VALUE obj);
val = rb_obj_as_string_result(str, val);
}
@@ -399,8 +398,6 @@ toregexp
(VALUE val)
// attr rb_snum_t sp_inc = 1 - cnt;
{
- VALUE rb_reg_new_ary(VALUE ary, int options);
- VALUE rb_ary_tmp_new_from_values(VALUE, long, const VALUE *);
const VALUE ary = rb_ary_tmp_new_from_values(0, cnt, STACK_ADDR_FROM_TOP(cnt));
val = rb_reg_new_ary(ary, (int)opt);
rb_ary_clear(ary);