gh-137136: Suppress build warnings when build on Windows with --experimental-jit-interpreter (GH-137137)

This commit is contained in:
AN Long 2025-09-03 23:42:26 +09:00 committed by GitHub
parent 34ed03875a
commit 1ff2cbbac8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 22 additions and 20 deletions

View file

@ -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) {