diff options
author | Mark Shannon <mark@hotpy.org> | 2020-09-29 09:09:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 09:09:13 (GMT) |
commit | 17b5be0c0a3f74141014e06a660f1b5ddb002fec (patch) | |
tree | dbab380ec65937f6957064856eb5f33d77ca56aa /Python | |
parent | 5b0181d1f6474c2cb9b80bdaf3bc56a78bf5fbe7 (diff) | |
download | cpython-17b5be0c0a3f74141014e06a660f1b5ddb002fec.zip cpython-17b5be0c0a3f74141014e06a660f1b5ddb002fec.tar.gz cpython-17b5be0c0a3f74141014e06a660f1b5ddb002fec.tar.bz2 |
bpo-41670: Remove outdated predict macro invocation. (GH-22026)
Remove PREDICTion of POP_BLOCK from FOR_ITER.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 6430e79..6bd2d6b 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2311,7 +2311,6 @@ main_loop: } case TARGET(POP_BLOCK): { - PREDICTED(POP_BLOCK); PyFrame_BlockPop(f); DISPATCH(); } @@ -3366,7 +3365,6 @@ main_loop: STACK_SHRINK(1); Py_DECREF(iter); JUMPBY(oparg); - PREDICT(POP_BLOCK); DISPATCH(); } |