Skip to content

Commit 29b6237

Browse files
Fix JIT builds
1 parent e198894 commit 29b6237

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Python/bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4046,7 +4046,7 @@ dummy_func(
40464046
PyObject *res_o = PyLong_FromSsize_t(len_i);
40474047
assert((res_o != NULL) ^ (_PyErr_Occurred(tstate) != NULL));
40484048
if (res_o == NULL) {
4049-
goto error;
4049+
GOTO_ERROR(error);
40504050
}
40514051
PyStackRef_CLOSE(arg_stackref);
40524052
DEAD(args);

Python/executor_cases.c.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/generated_cases.c.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/generated_tail_call_handlers.c.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)