diff options
author | Mark Shannon <mark@hotpy.org> | 2023-09-08 17:54:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 17:54:45 +0100 |
commit | 501f2dc527010a4fe17026b3f352d72b01228b6f (patch) | |
tree | 7e2cf8307d4fdac6ac29a9326fa1a5d0f49932b4 /Python/generated_cases.c.h | |
parent | ccd48623d4860e730a16f3f252d67bfea8c1e905 (diff) | |
download | cpython-501f2dc527010a4fe17026b3f352d72b01228b6f.tar.gz cpython-501f2dc527010a4fe17026b3f352d72b01228b6f.zip |
GH-108614: Unbreak emscripten build (GH-109132)
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index 84f83db128e..136b36c8260 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -28,8 +28,8 @@ TARGET(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 |