@@ -37,7 +37,8 @@ NULL | | RECORDED_VALUE*
3737| KNOWN_CLASS--+ | | |
3838| | | | | | PREDICATE RECORDED_VALUE(known type)
3939| | | INT* | | | |
40- | | | | FUNC_VERSION | | | <- Anything below this level has a known truthiness.
40+ | | | | | | | | <- Anything below this level has a known truthiness.
41+ | | | | FUNC_VERSION | | |
4142| TUPLE | | | TRUTHINESS | |
4243| | | | | | | | <- Anything below this level is a known constant.
4344| KNOWN_VALUE--+-------+----+------+
@@ -100,7 +101,7 @@ _PyUOpSymPrint(JitOptRef ref)
100101 printf ("<v%u at %p>" , sym -> version .version , (void * )sym );
101102 break ;
102103 case JIT_SYM_FUNC_VERSION_TAG :
103- printf ("<fv%u at %p >" , sym -> func_version .func_version , ( void * ) sym );
104+ printf ("<function version=%u >" , sym -> func_version .func_version );
104105 break ;
105106 case JIT_SYM_KNOWN_CLASS_TAG :
106107 printf ("<%s at %p>" , sym -> cls .type -> tp_name , (void * )sym );
@@ -527,7 +528,7 @@ _Py_uop_sym_set_func_version(JitOptContext *ctx, JitOptRef ref, uint32_t version
527528 ((PyFunctionObject * )sym -> recorded_value .value )-> func_version != version ) {
528529 sym_set_bottom (ctx , sym );
529530 return false;
530- }
531+ }
531532 // Promote to known value, as we have guarded/checked on it.
532533 sym -> tag = JIT_SYM_KNOWN_VALUE_TAG ;
533534 // New ownership. We need to NewRef here, as
0 commit comments