Skip to content

Commit 52a7f1b

Browse files
authored
pythongh-148510: restore func_version check in _LOAD_ATTR_PROPERTY_FRAME (pythonGH-148528)
1 parent 4af46b4 commit 52a7f1b

File tree

13 files changed

+589
-415
lines changed

13 files changed

+589
-415
lines changed

Include/internal/pycore_opcode_metadata.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_optimizer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ extern JitOptRef _Py_uop_sym_new_null(JitOptContext *ctx);
402402
extern bool _Py_uop_sym_has_type(JitOptRef sym);
403403
extern bool _Py_uop_sym_matches_type(JitOptRef sym, PyTypeObject *typ);
404404
extern bool _Py_uop_sym_matches_type_version(JitOptRef sym, unsigned int version);
405+
extern unsigned int _Py_uop_sym_get_type_version(JitOptRef sym);
405406
extern void _Py_uop_sym_set_null(JitOptContext *ctx, JitOptRef sym);
406407
extern void _Py_uop_sym_set_non_null(JitOptContext *ctx, JitOptRef sym);
407408
extern void _Py_uop_sym_set_type(JitOptContext *ctx, JitOptRef sym, PyTypeObject *typ);

0 commit comments

Comments
 (0)