diff options
| author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-07-01 10:28:07 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-01 10:28:07 (GMT) |
| commit | 200f2554114f3d40684af0969fef6af875cb1462 (patch) | |
| tree | d2b3a575b3d3397430ccd1d81e49afd78aefaa0a /Python/opcode_metadata.h | |
| parent | d3abc9b5165eee7dbe24f8f081c0739e6ad3ef3b (diff) | |
| download | cpython-200f2554114f3d40684af0969fef6af875cb1462.zip cpython-200f2554114f3d40684af0969fef6af875cb1462.tar.gz cpython-200f2554114f3d40684af0969fef6af875cb1462.tar.bz2 | |
gh-106149: move unconditional jump direction resolution from optimizer to assembler (#106291)
Diffstat (limited to 'Python/opcode_metadata.h')
| -rw-r--r-- | Python/opcode_metadata.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/opcode_metadata.h b/Python/opcode_metadata.h index 5c7de77..6a42775 100644 --- a/Python/opcode_metadata.h +++ b/Python/opcode_metadata.h @@ -4,7 +4,7 @@ // Do not edit! -#define IS_PSEUDO_INSTR(OP) \ +#define IS_PSEUDO_INSTR(OP) ( \ ((OP) == LOAD_CLOSURE) || \ ((OP) == STORE_FAST_MAYBE_NULL) || \ ((OP) == LOAD_SUPER_METHOD) || \ @@ -17,7 +17,7 @@ ((OP) == SETUP_CLEANUP) || \ ((OP) == SETUP_WITH) || \ ((OP) == POP_BLOCK) || \ - 0 + 0) #define EXIT_TRACE 300 #define SET_IP 301 |
