We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9eaaa6 commit 13e79a3Copy full SHA for 13e79a3
src/gf.c
@@ -1739,6 +1739,9 @@ JL_DLLEXPORT void jl_method_table_insert(jl_methtable_t *mt, jl_method_t *method
1739
for (i = 1; i < na; i += 2) {
1740
jl_value_t *backedgetyp = backedges[i - 1];
1741
if (!jl_has_empty_intersection(backedgetyp, (jl_value_t*)type)) {
1742
+ if (_jl_debug_method_invalidation) {
1743
+ jl_array_ptr_1d_push(_jl_debug_method_invalidation, (jl_value_t*)backedgetyp);
1744
+ }
1745
jl_method_instance_t *backedge = (jl_method_instance_t*)backedges[i];
1746
invalidate_method_instance(backedge, max_world, 0);
1747
invalidated = 1;
0 commit comments