bpo-41670: Remove outdated predict macro invocation. (GH-22026)

Remove PREDICTion of POP_BLOCK from FOR_ITER.
This commit is contained in:
Mark Shannon
2020-09-29 10:09:13 +01:00
committed by GitHub
parent 5b0181d1f6
commit 17b5be0c0a
3 changed files with 21 additions and 2 deletions

View File

@@ -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();
}