mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
gh-137136: Suppress build warnings when build on Windows with --experimental-jit-interpreter (GH-137137)
This commit is contained in:
parent
34ed03875a
commit
1ff2cbbac8
9 changed files with 22 additions and 20 deletions
|
|
@ -667,7 +667,7 @@ _Py_uop_sym_new_tuple(JitOptContext *ctx, int size, JitOptRef *args)
|
|||
}
|
||||
|
||||
JitOptRef
|
||||
_Py_uop_sym_tuple_getitem(JitOptContext *ctx, JitOptRef ref, int item)
|
||||
_Py_uop_sym_tuple_getitem(JitOptContext *ctx, JitOptRef ref, Py_ssize_t item)
|
||||
{
|
||||
JitOptSymbol *sym = PyJitRef_Unwrap(ref);
|
||||
assert(item >= 0);
|
||||
|
|
@ -683,7 +683,7 @@ _Py_uop_sym_tuple_getitem(JitOptContext *ctx, JitOptRef ref, int item)
|
|||
return _Py_uop_sym_new_not_null(ctx);
|
||||
}
|
||||
|
||||
int
|
||||
Py_ssize_t
|
||||
_Py_uop_sym_tuple_length(JitOptRef ref)
|
||||
{
|
||||
JitOptSymbol *sym = PyJitRef_Unwrap(ref);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue