diff options
| -rw-r--r-- | yjit/src/codegen.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index a32657beeb..e00c1788c3 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -2035,11 +2035,11 @@ fn jit_chain_guard( } } -// up to 10 different classes, and embedded or not for each -pub const GET_IVAR_MAX_DEPTH: i32 = 10; +// up to 8 different shapes for each +pub const GET_IVAR_MAX_DEPTH: i32 = 8; -// up to 10 different classes, and embedded or not for each -pub const SET_IVAR_MAX_DEPTH: i32 = 10; +// up to 8 different shapes for each +pub const SET_IVAR_MAX_DEPTH: i32 = 8; // hashes and arrays pub const OPT_AREF_MAX_CHAIN_DEPTH: i32 = 2; |
