Skip to content

Commit 9e730d1

Browse files
committed
The world isn't ready for ; use
1 parent a223f63 commit 9e730d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Python/optimizer.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,11 @@ typedef struct {
287287
int instrs_executed;
288288
} UOpOptimizerObject;
289289

290-
const int MAX_TRACE_LENGTH = 16;
290+
#define MAX_TRACE_LENGTH 16
291291

292292
// UOp opcodes are outside the range of bytecodes or pseudo ops
293-
const int EXIT_TRACE = 512;
294-
const int SET_IP = 513;
293+
#define EXIT_TRACE 512
294+
#define SET_IP 513
295295

296296
typedef struct {
297297
int opcode;

0 commit comments

Comments
 (0)