mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-120367: fix bug where compiler detects redundant jump after pseudo op replacement (#120714)
This commit is contained in:
parent
69058e20e4
commit
b7f478948f
3 changed files with 28 additions and 2 deletions
|
@ -2389,7 +2389,7 @@ convert_pseudo_ops(cfg_builder *g)
|
|||
}
|
||||
}
|
||||
}
|
||||
return remove_redundant_nops(g);
|
||||
return remove_redundant_nops_and_jumps(g);
|
||||
}
|
||||
|
||||
static inline bool
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue