Skip to content

Commit a1dc02b

Browse files
DinoVmeta-codesync[bot]
authored andcommitted
Fix patch for flowgraph.c that left unused local
Summary: Fixes an issue w/ our external 3.14 builds. This variable isn't used but didn't get deleted in the patch which causes errors when we treat warnings as errors. Remove the unused variable. Reviewed By: itamaro Differential Revision: D84659198 fbshipit-source-id: dcc37e36ccaff404970022d373f36a8455ebb50e
1 parent 7734b6d commit a1dc02b

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

Python/flowgraph.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2981,7 +2981,6 @@ optimize_load_fast(cfg_builder *g)
29812981
}
29822982

29832983
// Push fallthrough block
2984-
cfg_instr *term = basicblock_last_instr(block);
29852984
if (BB_HAS_FALLTHROUGH(block)) {
29862985
assert(block->b_next != NULL);
29872986
load_fast_push_block(&sp, block->b_next, refs.size);

0 commit comments

Comments
 (0)