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 42677ab commit 4f5f3e7Copy full SHA for 4f5f3e7
Include/internal/pycore_optimizer.h
@@ -61,13 +61,13 @@ uop_buffer_last(_PyJitUopBuffer *trace)
61
static inline int
62
uop_buffer_length(_PyJitUopBuffer *trace)
63
{
64
- return trace->next - trace->start;
+ return (int)(trace->next - trace->start);
65
}
66
67
68
uop_buffer_remaining_space(_PyJitUopBuffer *trace)
69
70
- return trace->end - trace->next;
+ return (int)(trace->end - trace->next);
71
72
73
typedef struct _PyJitTracerInitialState {
0 commit comments