@@ -2818,8 +2818,8 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject
2818
2818
if (lltrace >= 3 ) {
2819
2819
const char * opname = opcode < 256 ? _PyOpcode_OpName [opcode ] : "" ;
2820
2820
int stack_level = (int )(stack_pointer - _PyFrame_Stackbase (frame ));
2821
- fprintf (stderr , " uop %s %d, oparg %d , stack_level %d\n" ,
2822
- opname , opcode , oparg , stack_level );
2821
+ fprintf (stderr , " uop %s %d, operand %lld , stack_level %d\n" ,
2822
+ opname , opcode , operand , stack_level );
2823
2823
}
2824
2824
#endif
2825
2825
pc ++ ;
@@ -2845,7 +2845,7 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject
2845
2845
2846
2846
default :
2847
2847
{
2848
- fprintf (stderr , "Unknown uop %d, oparg %d \n" , opcode , oparg );
2848
+ fprintf (stderr , "Unknown uop %d, operand %ld \n" , opcode , operand );
2849
2849
Py_FatalError ("Unknown uop" );
2850
2850
abort (); // Unreachable
2851
2851
for (;;) {}
@@ -2868,7 +2868,7 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject
2868
2868
// The caller recovers the frame from cframe.current_frame.
2869
2869
#ifdef LLTRACE
2870
2870
if (lltrace >= 2 ) {
2871
- fprintf (stderr , "Error: [Opcode %d, oparg %d ]\n" , opcode , oparg );
2871
+ fprintf (stderr , "Error: [Opcode %d, operand %lld ]\n" , opcode , operand );
2872
2872
}
2873
2873
#endif
2874
2874
_PyFrame_SetStackPointer (frame , stack_pointer );
@@ -2885,7 +2885,7 @@ PREDICTED(BINARY_OP)
2885
2885
// This presumes nothing was popped from the stack (nor pushed).
2886
2886
#ifdef LLTRACE
2887
2887
if (lltrace >= 2 ) {
2888
- fprintf (stderr , "DEOPT: [Opcode %d, oparg %d ]\n" , opcode , oparg );
2888
+ fprintf (stderr , "DEOPT: [Opcode %d, operand %lld ]\n" , opcode , operand );
2889
2889
}
2890
2890
#endif
2891
2891
_PyFrame_SetStackPointer (frame , stack_pointer );
0 commit comments