We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a020b8 commit 6a8d3c5Copy full SHA for 6a8d3c5
Python/ceval.c
@@ -143,7 +143,7 @@ lltrace_instruction(_PyInterpreterFrame *frame,
143
const char *opname = _PyOpcode_OpName[opcode];
144
assert(opname != NULL);
145
int offset = (int)(next_instr - _PyCode_CODE(frame->f_code));
146
- if (HAS_ARG(_PyOpcode_Deopt[opcode])) {
+ if (HAS_ARG((int)_PyOpcode_Deopt[opcode])) {
147
printf("%d: %s %d\n", offset * 2, opname, oparg);
148
}
149
else {
0 commit comments