diff options
author | Jean Boussier <[email protected]> | 2025-06-04 11:11:24 +0200 |
---|---|---|
committer | Jean Boussier <[email protected]> | 2025-06-05 07:44:44 +0200 |
commit | 772fc1f18785dd3f15dfd815977c9a796e9a3592 (patch) | |
tree | 80850028e11eb7390425409c3fa118c374d35cf2 /yjit/src | |
parent | 111986f8b0604156e139d96476e06a0d1d645e04 (diff) |
Get rid of `rb_shape_t.flags`
Now all flags are only in the `shape_id_t`, and can all be checked
without needing to dereference a pointer.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13515
Diffstat (limited to 'yjit/src')
-rw-r--r-- | yjit/src/cruby_bindings.inc.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/yjit/src/cruby_bindings.inc.rs b/yjit/src/cruby_bindings.inc.rs index 15b6a1d765..558d675e5d 100644 --- a/yjit/src/cruby_bindings.inc.rs +++ b/yjit/src/cruby_bindings.inc.rs @@ -699,7 +699,6 @@ pub struct rb_shape { pub capacity: attr_index_t, pub type_: u8, pub heap_index: u8, - pub flags: u8, } pub type rb_shape_t = rb_shape; #[repr(C)] |