Skip to content

Commit 74a2e50

Browse files
remove the new printf
1 parent 11cdbd9 commit 74a2e50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/optimizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ make_executor_from_uops(_PyThreadStateImpl *tstate, _PyUOpInstruction *buffer, i
13961396
lltrace = *python_lltrace - '0'; // TODO: Parse an int and all that
13971397
}
13981398
if (lltrace >= 2) {
1399-
printf("Optimized trace (length %d) %d:\n", length, Py_SIZE((PyObject *)executor));
1399+
printf("Optimized trace (length %d):\n", length);
14001400
for (int i = 0; i < length; i++) {
14011401
printf("%4d OPTIMIZED: ", i);
14021402
_PyUOpPrint(&executor->trace[i]);

0 commit comments

Comments
 (0)