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
6
error.c
6
error.c
|
@ -187,7 +187,7 @@ rb_warning_category_update(unsigned int mask, unsigned int bits)
|
|||
warning_disabled_categories |= mask & ~bits;
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED bool
|
||||
bool
|
||||
rb_warning_category_enabled_p(rb_warning_category_t category)
|
||||
{
|
||||
return !(warning_disabled_categories & (1U << category));
|
||||
|
@ -867,7 +867,7 @@ rb_report_bug_valist(VALUE file, int line, const char *fmt, va_list args)
|
|||
report_bug_valist(RSTRING_PTR(file), line, fmt, NULL, args);
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED void
|
||||
void
|
||||
rb_assert_failure(const char *file, int line, const char *name, const char *expr)
|
||||
{
|
||||
FILE *out = stderr;
|
||||
|
@ -1582,7 +1582,7 @@ exc_set_backtrace(VALUE exc, VALUE bt)
|
|||
return rb_ivar_set(exc, id_bt, rb_check_backtrace(bt));
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED VALUE
|
||||
VALUE
|
||||
rb_exc_set_backtrace(VALUE exc, VALUE bt)
|
||||
{
|
||||
return exc_set_backtrace(exc, bt);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue