Skip to content

Commit abcd82c

Browse files
committed
Update constant names for 32 bit builds
1 parent 8110012 commit abcd82c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/jit/template.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ _JIT_ENTRY(_PyInterpreterFrame *frame, _PyStackRef *stack_pointer, PyThreadState
132132
assert(SIZEOF_VOID_P == 4);
133133
PATCH_VALUE(uint32_t, _operand0_hi, _JIT_OPERAND0_HI)
134134
PATCH_VALUE(uint32_t, _operand0_lo, _JIT_OPERAND0_LO)
135-
uint64_t _operand0 = ((uint64_t)_operand0_hi << 32) | _operand0_lo;
135+
uint64_t _operand0_64 = ((uint64_t)_operand0_hi << 32) | _operand0_lo;
136136
PATCH_VALUE(uint32_t, _operand1_hi, _JIT_OPERAND1_HI)
137137
PATCH_VALUE(uint32_t, _operand1_lo, _JIT_OPERAND1_LO)
138-
uint64_t _operand1 = ((uint64_t)_operand1_hi << 32) | _operand1_lo;
138+
uint64_t _operand1_64 = ((uint64_t)_operand1_hi << 32) | _operand1_lo;
139139
#endif
140140
#if SUPPORTS_SMALL_CONSTS
141141
PATCH_VALUE(uint32_t, _operand0_32, _JIT_OPERAND0_32)

0 commit comments

Comments
 (0)