Skip to content

Commit ab1ad9c

Browse files
fix on FT again
1 parent 3a3fa9d commit ab1ad9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_optimizer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ static const JitOptRef PyJitRef_NULL = (JitOptRef){.bits = Py_TAG_DEFERRED};
267267
static inline bool
268268
PyJitRef_IsNull(JitOptRef ref)
269269
{
270-
return ref.bits == PyStackRef_NULL_BITS;
270+
return ref.bits == PyJitRef_NULL.bits;
271271
}
272272

273273
static inline int

0 commit comments

Comments
 (0)