diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-06-27 19:24:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 19:24:58 (GMT) |
commit | 529088100952b31797a29ef7e0f5716613b32d66 (patch) | |
tree | ad6c08c0f5d4a3435b4be33eb44dd132a4f832cc /Include/internal/pycore_flowgraph.h | |
parent | eaa1eae55ea66d74c5303924320185dac74d4eb1 (diff) | |
download | cpython-529088100952b31797a29ef7e0f5716613b32d66.zip cpython-529088100952b31797a29ef7e0f5716613b32d66.tar.gz cpython-529088100952b31797a29ef7e0f5716613b32d66.tar.bz2 |
gh-106149: move jump target resolution from optimizer to assembler (#106150)
Diffstat (limited to 'Include/internal/pycore_flowgraph.h')
-rw-r--r-- | Include/internal/pycore_flowgraph.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/internal/pycore_flowgraph.h b/Include/internal/pycore_flowgraph.h index 720feb1..4a01574 100644 --- a/Include/internal/pycore_flowgraph.h +++ b/Include/internal/pycore_flowgraph.h @@ -55,8 +55,6 @@ typedef struct _PyCfgBasicblock_ { int b_predecessors; /* depth of stack upon entry of block, computed by stackdepth() */ int b_startdepth; - /* instruction offset for block, computed by assemble_jump_offsets() */ - int b_offset; /* Basic block is an exception handler that preserves lasti */ unsigned b_preserve_lasti : 1; /* Used by compiler passes to mark whether they have visited a basic block. */ |