131
131
(opcode) == STORE_FAST__LOAD_FAST || \
132
132
(opcode) == STORE_FAST__STORE_FAST)
133
133
134
- #define IS_TOP_LEVEL_AWAIT (c ) ( \
135
- (c ->c_flags.cf_flags & PyCF_ALLOW_TOP_LEVEL_AWAIT) \
136
- && (c ->u->u_ste->ste_type == ModuleBlock))
134
+ #define IS_TOP_LEVEL_AWAIT (C ) ( \
135
+ ((C) ->c_flags.cf_flags & PyCF_ALLOW_TOP_LEVEL_AWAIT) \
136
+ && ((C) ->u->u_ste->ste_type == ModuleBlock))
137
137
138
138
typedef _PyCompilerSrcLocation location ;
139
139
@@ -479,7 +479,7 @@ struct compiler {
479
479
PyArena * c_arena ; /* pointer to memory allocation arena */
480
480
};
481
481
482
- #define CFG_BUILDER (c ) (&((c )->u->u_cfg_builder))
482
+ #define CFG_BUILDER (C ) (&((C )->u->u_cfg_builder))
483
483
484
484
485
485
typedef struct {
@@ -1626,7 +1626,7 @@ cfg_builder_addop_j(cfg_builder *g, location loc,
1626
1626
1627
1627
#define ADDOP_IN_SCOPE (C , LOC , OP ) { \
1628
1628
if (cfg_builder_addop_noarg(CFG_BUILDER(C), (OP), (LOC)) < 0) { \
1629
- compiler_exit_scope(c ); \
1629
+ compiler_exit_scope(C ); \
1630
1630
return -1; \
1631
1631
} \
1632
1632
}
@@ -1692,7 +1692,7 @@ cfg_builder_addop_j(cfg_builder *g, location loc,
1692
1692
1693
1693
#define VISIT_IN_SCOPE (C , TYPE , V ) {\
1694
1694
if (compiler_visit_ ## TYPE((C), (V)) < 0) { \
1695
- compiler_exit_scope(c ); \
1695
+ compiler_exit_scope(C ); \
1696
1696
return ERROR; \
1697
1697
} \
1698
1698
}
@@ -1713,7 +1713,7 @@ cfg_builder_addop_j(cfg_builder *g, location loc,
1713
1713
for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \
1714
1714
TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \
1715
1715
if (compiler_visit_ ## TYPE((C), elt) < 0) { \
1716
- compiler_exit_scope(c ); \
1716
+ compiler_exit_scope(C ); \
1717
1717
return ERROR; \
1718
1718
} \
1719
1719
} \
0 commit comments