mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +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
|
|
@ -642,7 +642,7 @@ remove_unneeded_uops(_PyUOpInstruction *buffer, int buffer_size)
|
|||
opcode = buffer[pc].opcode = op_without_pop[opcode];
|
||||
if (op_without_pop[last->opcode]) {
|
||||
opcode = last->opcode;
|
||||
pc = last - buffer;
|
||||
pc = (int)(last - buffer);
|
||||
}
|
||||
}
|
||||
else if (last->opcode == _PUSH_NULL) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue