File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2294,7 +2294,7 @@ static void jl_insert_methods(jl_array_t *list)
2294
2294
}
2295
2295
}
2296
2296
2297
- extern int jl_debug_method_invalidation ;
2297
+ extern jl_array_t * _jl_debug_method_invalidation ;
2298
2298
2299
2299
// verify that these edges intersect with the same methods as before
2300
2300
static void jl_verify_edges (jl_array_t * targets , jl_array_t * * pvalids )
@@ -2386,9 +2386,9 @@ static void jl_insert_backedges(jl_array_t *list, jl_array_t *targets)
2386
2386
}
2387
2387
}
2388
2388
else {
2389
- if (jl_debug_method_invalidation ) {
2390
- jl_static_show ( JL_STDOUT , (jl_value_t * )caller );
2391
- jl_uv_puts ( JL_STDOUT , "<<<\n" , 4 );
2389
+ if (_jl_debug_method_invalidation ) {
2390
+ jl_array_ptr_1d_push ( _jl_debug_method_invalidation , (jl_value_t * )caller );
2391
+ jl_array_ptr_1d_push ( _jl_debug_method_invalidation , jl_cstr_to_string ( "insert_backedges" ) );
2392
2392
}
2393
2393
}
2394
2394
}
You can’t perform that action at this time.
0 commit comments