Skip to content

Commit 01004c2

Browse files
lint
1 parent e77f842 commit 01004c2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Python/optimizer_symbols.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ _Py_uop_ref_set_non_null(JitOptContext *ctx, JitOptRef ref)
396396
}
397397
}
398398

399-
JitOptRef
399+
JitOptRef
400400
_Py_uop_ref_new_unknown(JitOptContext *ctx)
401401
{
402402
JitOptSymbol *res = sym_new(ctx);
@@ -406,7 +406,7 @@ _Py_uop_ref_new_unknown(JitOptContext *ctx)
406406
return PyJitRef_FromSymbolSteal(res);
407407
}
408408

409-
JitOptRef
409+
JitOptRef
410410
_Py_uop_ref_new_not_null(JitOptContext *ctx)
411411
{
412412
JitOptSymbol *res = sym_new(ctx);
@@ -417,7 +417,7 @@ _Py_uop_ref_new_not_null(JitOptContext *ctx)
417417
return PyJitRef_FromSymbolSteal(res);
418418
}
419419

420-
JitOptRef
420+
JitOptRef
421421
_Py_uop_ref_new_type(JitOptContext *ctx, PyTypeObject *typ)
422422
{
423423
JitOptSymbol *res = sym_new(ctx);
@@ -430,7 +430,7 @@ _Py_uop_ref_new_type(JitOptContext *ctx, PyTypeObject *typ)
430430
}
431431

432432
// Adds a new reference to const_val, owned by the symbol.
433-
JitOptRef
433+
JitOptRef
434434
_Py_uop_ref_new_const(JitOptContext *ctx, PyObject *const_val)
435435
{
436436
assert(const_val != NULL);
@@ -443,7 +443,7 @@ _Py_uop_ref_new_const(JitOptContext *ctx, PyObject *const_val)
443443
return ref;
444444
}
445445

446-
JitOptRef
446+
JitOptRef
447447
_Py_uop_ref_new_null(JitOptContext *ctx)
448448
{
449449
JitOptSymbol *null_sym = sym_new(ctx);
@@ -574,7 +574,7 @@ _Py_uop_ref_truthiness(JitOptContext *ctx, JitOptRef ref)
574574
return -1;
575575
}
576576

577-
JitOptRef
577+
JitOptRef
578578
_Py_uop_ref_new_tuple(JitOptContext *ctx, int size, JitOptRef *args)
579579
{
580580
JitOptSymbol *res = sym_new(ctx);
@@ -595,7 +595,7 @@ _Py_uop_ref_new_tuple(JitOptContext *ctx, int size, JitOptRef *args)
595595
return PyJitRef_FromSymbolSteal(res);
596596
}
597597

598-
JitOptRef
598+
JitOptRef
599599
_Py_uop_ref_tuple_getitem(JitOptContext *ctx, JitOptRef ref, int item)
600600
{
601601
JitOptSymbol *sym = PyJitRef_AsSymbolBorrow(ref);
@@ -651,7 +651,7 @@ _Py_uop_ref_is_immortal(JitOptRef ref)
651651
return _Py_uop_sym_is_immortal(sym);
652652
}
653653

654-
JitOptRef
654+
JitOptRef
655655
_Py_uop_ref_new_truthiness(JitOptContext *ctx, JitOptRef ref, bool truthy)
656656
{
657657
JitOptSymbol *value = PyJitRef_AsSymbolBorrow(ref);

0 commit comments

Comments
 (0)