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 2494965 commit aff296aCopy full SHA for aff296a
Python/optimizer.c
@@ -1792,12 +1792,6 @@ _Py_Executor_DependsOn(_PyExecutorObject *executor, void *obj)
1792
void
1793
_Py_Executors_InvalidateDependency(PyInterpreterState *interp, void *obj, int is_invalidation)
1794
{
1795
-
1796
- // It doesn't matter if we don't invalidate all threads.
1797
- // If more threads are spawned, we force the jit not to compile anyways
1798
- // so the trace gets abandoned.
1799
- _PyJit_Tracer_InvalidateDependency(_PyThreadState_GET(), obj);
1800
1801
_PyBloomFilter obj_filter;
1802
_Py_BloomFilter_Init(&obj_filter);
1803
_Py_BloomFilter_Add(&obj_filter, obj);
0 commit comments