Skip to content

Commit

Permalink
Seems to work...!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
tekknolagi committed Nov 28, 2023
1 parent 310d01f commit 7d117d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/bytecode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 7d117d4

Please sign in to comment.