diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-18 22:34:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 22:34:07 (GMT) |
commit | 50fa775e6821b8b242f5709c36c62e7c4fb2c522 (patch) | |
tree | 80a3d0ecf3676db3d64ebb7f591ca027154839dd /Python | |
parent | 07145ddf19bc423e83d0290095833bc95861fc2f (diff) | |
download | cpython-50fa775e6821b8b242f5709c36c62e7c4fb2c522.zip cpython-50fa775e6821b8b242f5709c36c62e7c4fb2c522.tar.gz cpython-50fa775e6821b8b242f5709c36c62e7c4fb2c522.tar.bz2 |
[3.13] gh-120367: fix bug where compiler detects redundant jump after pseudo op replacement (GH-120714) (#120716)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/flowgraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/flowgraph.c b/Python/flowgraph.c index 17b62b6..b8d3f06 100644 --- a/Python/flowgraph.c +++ b/Python/flowgraph.c @@ -2361,7 +2361,7 @@ convert_pseudo_ops(cfg_builder *g) } } } - return remove_redundant_nops(g); + return remove_redundant_nops_and_jumps(g); } static inline bool |