mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Stop exporting symbols for MJIT
This commit is contained in:
parent
31f4b2d86b
commit
233ddfac54
Notes:
git
2023-03-07 05:59:44 +00:00
49 changed files with 116 additions and 193 deletions
8
array.c
8
array.c
|
@ -881,7 +881,7 @@ VALUE
|
|||
return ary;
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED VALUE
|
||||
VALUE
|
||||
rb_ary_tmp_new_from_values(VALUE klass, long n, const VALUE *elts)
|
||||
{
|
||||
VALUE ary;
|
||||
|
@ -1123,7 +1123,7 @@ rb_check_array_type(VALUE ary)
|
|||
return rb_check_convert_type_with_id(ary, T_ARRAY, "Array", idTo_ary);
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED VALUE
|
||||
VALUE
|
||||
rb_check_to_array(VALUE ary)
|
||||
{
|
||||
return rb_check_convert_type_with_id(ary, T_ARRAY, "Array", idTo_a);
|
||||
|
@ -1655,7 +1655,7 @@ rb_ary_shift_m(int argc, VALUE *argv, VALUE ary)
|
|||
return result;
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED VALUE
|
||||
VALUE
|
||||
rb_ary_behead(VALUE ary, long n)
|
||||
{
|
||||
if (n <= 0) {
|
||||
|
@ -1981,7 +1981,7 @@ rb_ary_aref2(VALUE ary, VALUE b, VALUE e)
|
|||
return rb_ary_subseq(ary, beg, len);
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED VALUE
|
||||
VALUE
|
||||
rb_ary_aref1(VALUE ary, VALUE arg)
|
||||
{
|
||||
long beg, len, step;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue