From 7d117d4f9173fada9ea8995c719cc300de81b0ba Mon Sep 17 00:00:00 2001 From: Max Bernstein Date: Tue, 28 Nov 2023 15:49:52 -0500 Subject: [PATCH] Seems to work...!!! --- runtime/bytecode.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/bytecode.cpp b/runtime/bytecode.cpp index 7ab637e1f..b4613f407 100644 --- a/runtime/bytecode.cpp +++ b/runtime/bytecode.cpp @@ -470,7 +470,7 @@ static void analyzeDefiniteAssignment(Thread* thread, } (void)printBits; (void)runDefiniteAssignmentOpcode; - // DTRACE_PROBE1(python, DefiniteAssignmentIterations, num_iterations); + DTRACE_PROBE1(python, DefiniteAssignmentIterations, num_iterations); } void analyzeBytecode(Thread* thread, const Function& function) { @@ -498,7 +498,7 @@ void rewriteBytecode(Thread* thread, const Function& function) { } return; } - // analyzeBytecode(thread, function); + analyzeBytecode(thread, function); MutableBytes bytecode(&scope, function.rewrittenBytecode()); word num_opcodes = rewrittenBytecodeLength(bytecode); word cache = num_global_caches;