summaryrefslogtreecommitdiffstats
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2024-02-29 16:11:28 (GMT)
committerGitHub <noreply@github.com>2024-02-29 16:11:28 (GMT)
commitf0df35eeca2ccdfd58cfb9801f06ffa23537270b (patch)
tree9c7c6a5de052e09462b0fda44ac7f55a4032540a /Python/bytecodes.c
parent45d8871dc4da33fcef92991031707c5bf88a40cf (diff)
downloadcpython-f0df35eeca2ccdfd58cfb9801f06ffa23537270b.zip
cpython-f0df35eeca2ccdfd58cfb9801f06ffa23537270b.tar.gz
cpython-f0df35eeca2ccdfd58cfb9801f06ffa23537270b.tar.bz2
GH-115802: JIT "small" code for Windows (GH-115964)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index 565379a..1d51509 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -2755,7 +2755,7 @@ dummy_func(
GOTO_ERROR(error);
}
DECREF_INPUTS();
- res = _PyObject_CallNoArgsTstate(tstate, enter);
+ res = PyObject_CallNoArgs(enter);
Py_DECREF(enter);
if (res == NULL) {
Py_DECREF(exit);
@@ -2790,7 +2790,7 @@ dummy_func(
GOTO_ERROR(error);
}
DECREF_INPUTS();
- res = _PyObject_CallNoArgsTstate(tstate, enter);
+ res = PyObject_CallNoArgs(enter);
Py_DECREF(enter);
if (res == NULL) {
Py_DECREF(exit);
@@ -3822,9 +3822,9 @@ dummy_func(
}
inst(CONVERT_VALUE, (value -- result)) {
- convertion_func_ptr conv_fn;
+ conversion_func conv_fn;
assert(oparg >= FVC_STR && oparg <= FVC_ASCII);
- conv_fn = CONVERSION_FUNCTIONS[oparg];
+ conv_fn = _PyEval_ConversionFuncs[oparg];
result = conv_fn(value);
Py_DECREF(value);
ERROR_IF(result == NULL, error);