From f185a73249189bc3b75b4dc26e9ec2990a587b17 Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Sat, 28 Sep 2019 17:12:49 -0700 Subject: bpo-38310: Predict BUILD_MAP_UNPACK_WITH_CALL -> CALL_FUNCTION_EX. (GH-16467) --- Python/ceval.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index 964ce13336..a7d2ea8006 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2943,6 +2943,7 @@ main_loop: while (oparg--) Py_DECREF(POP()); PUSH(sum); + PREDICT(CALL_FUNCTION_EX); DISPATCH(); } @@ -3522,6 +3523,7 @@ main_loop: } case TARGET(CALL_FUNCTION_EX): { + PREDICTED(CALL_FUNCTION_EX); PyObject *func, *callargs, *kwargs = NULL, *result; if (oparg & 0x01) { kwargs = POP(); -- cgit v1.2.1