diff options
| author | Guido van Rossum <guido@python.org> | 2024-03-18 18:08:43 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-18 18:08:43 (GMT) |
| commit | 76d086890790f1bfbe05d12e02cadb539db5b0b1 (patch) | |
| tree | 5cf01c3fa78e0bada5d3707bd8410deab928519c /Python/optimizer_cases.c.h | |
| parent | 849e0716d378d6f9f724d1b3c386f6613d52a49d (diff) | |
| download | cpython-76d086890790f1bfbe05d12e02cadb539db5b0b1.zip cpython-76d086890790f1bfbe05d12e02cadb539db5b0b1.tar.gz cpython-76d086890790f1bfbe05d12e02cadb539db5b0b1.tar.bz2 | |
Cleanup tier2 debug output (#116920)
Various tweaks, including a slight refactor of the special cases for `_PUSH_FRAME`/`_POP_FRAME` to show the actual operand emitted.
Diffstat (limited to 'Python/optimizer_cases.c.h')
| -rw-r--r-- | Python/optimizer_cases.c.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index cf36f1b..610d1b1 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -1597,6 +1597,7 @@ int argcount = oparg; (void)callable; PyFunctionObject *func = (PyFunctionObject *)(this_instr + 2)->operand; + DPRINTF(3, "func: %p ", func); if (func == NULL) { goto error; } |
