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 bedaea0 commit f713676Copy full SHA for f713676
Tools/jit/template.c
@@ -69,9 +69,11 @@ do { \
69
} while (0)
70
71
#undef LLTRACE_RESUME_FRAME
72
-#define LLTRACE_RESUME_FRAME() \
73
- do { \
74
- } while (0)
+#ifdef Py_DEBUG
+#define LLTRACE_RESUME_FRAME() frame->lltrace = 0;
+#else
75
+#define LLTRACE_RESUME_FRAME()
76
+#endif
77
78
#define PATCH_JUMP(ALIAS) \
79
do { \
0 commit comments