summaryrefslogtreecommitdiffstats
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-09-08 16:54:45 (GMT)
committerGitHub <noreply@github.com>2023-09-08 16:54:45 (GMT)
commit501f2dc527010a4fe17026b3f352d72b01228b6f (patch)
tree7e2cf8307d4fdac6ac29a9326fa1a5d0f49932b4 /Python/bytecodes.c
parentccd48623d4860e730a16f3f252d67bfea8c1e905 (diff)
downloadcpython-501f2dc527010a4fe17026b3f352d72b01228b6f.zip
cpython-501f2dc527010a4fe17026b3f352d72b01228b6f.tar.gz
cpython-501f2dc527010a4fe17026b3f352d72b01228b6f.tar.bz2
GH-108614: Unbreak emscripten build (GH-109132)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index 8820b52..2106920 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -154,8 +154,8 @@ dummy_func(
inst(RESUME_CHECK, (--)) {
#if defined(__EMSCRIPTEN__)
- DEOPT_IF(emscripten_signal_clock == 0, RESUME);
- emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING;
+ DEOPT_IF(_Py_emscripten_signal_clock == 0, RESUME);
+ _Py_emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING;
#endif
/* Possibly combine these two checks */
DEOPT_IF(_PyFrame_GetCode(frame)->_co_instrumentation_version