diff options
author | Matt Valentine-House <[email protected]> | 2023-02-16 16:11:36 +0000 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2023-02-27 10:11:56 -0800 |
commit | 98e4bdf3e7f60346460cc75858df5f60288e396d (patch) | |
tree | f21fb8ac1d0ef7df288084df6909ed590b1738ab | |
parent | ae5e62ee9070057767d7ae7d4494dd9e1c7fc70e (diff) |
Update YJIT-bindgen
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7330
-rw-r--r-- | yjit/src/cruby_bindings.inc.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yjit/src/cruby_bindings.inc.rs b/yjit/src/cruby_bindings.inc.rs index 5940398f4a..4f873dad50 100644 --- a/yjit/src/cruby_bindings.inc.rs +++ b/yjit/src/cruby_bindings.inc.rs @@ -1076,6 +1076,9 @@ extern "C" { pub fn rb_bug(fmt: *const ::std::os::raw::c_char, ...) -> !; pub fn rb_gc_writebarrier(old: VALUE, young: VALUE); pub fn rb_class_get_superclass(klass: VALUE) -> VALUE; + pub fn rb_gc_mark(obj: VALUE); + pub fn rb_gc_mark_movable(obj: VALUE); + pub fn rb_gc_location(obj: VALUE) -> VALUE; pub static mut rb_mKernel: VALUE; pub static mut rb_cBasicObject: VALUE; pub static mut rb_cArray: VALUE; @@ -1103,9 +1106,6 @@ extern "C" { pub fn rb_intern(name: *const ::std::os::raw::c_char) -> ID; pub fn rb_id2name(id: ID) -> *const ::std::os::raw::c_char; pub fn rb_class2name(klass: VALUE) -> *const ::std::os::raw::c_char; - pub fn rb_gc_mark(obj: VALUE); - pub fn rb_gc_mark_movable(obj: VALUE); - pub fn rb_gc_location(obj: VALUE) -> VALUE; pub fn rb_obj_is_kind_of(obj: VALUE, klass: VALUE) -> VALUE; pub fn rb_obj_frozen_p(obj: VALUE) -> VALUE; pub fn rb_backref_get() -> VALUE; |