From c0453a40faaadb43d2e69767af6c9680f8689063 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Mon, 27 Jun 2022 12:24:23 +0100 Subject: GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168) --- Python/specialize.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Python/specialize.c') diff --git a/Python/specialize.c b/Python/specialize.c index 948fb32869..66cae44fa8 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -140,7 +140,8 @@ print_spec_stats(FILE *out, OpcodeStats *stats) { /* Mark some opcodes as specializable for stats, * even though we don't specialize them yet. */ - fprintf(out, "opcode[%d].specializable : 1\n", FOR_ITER); + fprintf(out, "opcode[%d].specializable : 1\n", BINARY_SLICE); + fprintf(out, "opcode[%d].specializable : 1\n", STORE_SLICE); for (int i = 0; i < 256; i++) { if (_PyOpcode_Adaptive[i]) { fprintf(out, "opcode[%d].specializable : 1\n", i); -- cgit v1.2.1