File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/classes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public static IsSubtypeNode create() {
77
77
@ Specialization (guards = { //
78
78
"derived == cachedDerived" , //
79
79
"cls == cachedCls" , //
80
- "mro.length() < 32" //
80
+ "mro.getInternalClassArray().length < 32" //
81
81
}, //
82
82
limit = "getVariableArgumentInlineCacheLimit()" , //
83
83
assumptions = "mro.getLookupStableAssumption()" )
@@ -96,7 +96,7 @@ boolean isSubtypeOfConstantType(@SuppressWarnings("unused") PythonAbstractClass
96
96
97
97
@ Specialization (guards = { //
98
98
"derived == cachedDerived" , //
99
- "mro.length() < 32" //
99
+ "mro.getInternalClassArray().length < 32" //
100
100
}, //
101
101
limit = "getVariableArgumentInlineCacheLimit()" , //
102
102
replaces = "isSubtypeOfConstantType" , //
You can’t perform that action at this time.
0 commit comments