diff options
author | Mark Shannon <mark@hotpy.org> | 2024-07-26 12:24:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-26 12:24:12 +0100 |
commit | afb0aa6ed20bd8e982ecb307f12923cf8dbccd8c (patch) | |
tree | 222f3075796f8167442bcc744c52efe3c7c8eaa5 /Python/optimizer_cases.c.h | |
parent | d9efa45d7457b0dfea467bb1c2d22c69056ffc73 (diff) | |
download | cpython-afb0aa6ed20bd8e982ecb307f12923cf8dbccd8c.tar.gz cpython-afb0aa6ed20bd8e982ecb307f12923cf8dbccd8c.zip |
GH-121131: Clean up and fix some instrumented instructions. (GH-121132)
* Add support for 'prev_instr' to code generator and refactor some INSTRUMENTED instructions
Diffstat (limited to 'Python/optimizer_cases.c.h')
-rw-r--r-- | Python/optimizer_cases.c.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index 33af8552ba6..3c9e6d3043c 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -621,10 +621,6 @@ break; } - /* _INSTRUMENTED_RETURN_VALUE is not a viable micro-op for tier 2 */ - - /* _INSTRUMENTED_RETURN_CONST is not a viable micro-op for tier 2 */ - case _GET_AITER: { _Py_UopsSymbol *iter; iter = sym_new_not_null(ctx); @@ -656,8 +652,6 @@ break; } - /* _INSTRUMENTED_YIELD_VALUE is not a viable micro-op for tier 2 */ - case _YIELD_VALUE: { _Py_UopsSymbol *res; res = sym_new_unknown(ctx); @@ -2056,6 +2050,8 @@ break; } + /* _INSTRUMENTED_LINE is not a viable micro-op for tier 2 */ + /* _INSTRUMENTED_INSTRUCTION is not a viable micro-op for tier 2 */ /* _INSTRUMENTED_JUMP_FORWARD is not a viable micro-op for tier 2 */ |