There was an error while loading. Please reload this page.
1 parent 4603523 commit 3f99ebeCopy full SHA for 3f99ebe
1 file changed
Python/flowgraph.c
@@ -41,9 +41,9 @@ typedef struct _PyCfgInstruction {
41
42
typedef struct _PyCfgBasicblock {
43
/* Each basicblock in a compilation unit is linked via b_list in the
44
- reverse order that the block are allocated. b_list points to the next
45
- block in this list, not to be confused with b_next, which is next by
46
- control flow. */
+ reverse order that blocks are allocated. b_list points to the
+ previously allocated block, not to be confused with b_next, which is
+ next by control flow. */
47
struct _PyCfgBasicblock *b_list;
48
/* The label of this block if it is a jump target, -1 otherwise */
49
_PyJumpTargetLabel b_label;
0 commit comments