diff options
| author | Mark Shannon <mark@hotpy.org> | 2023-01-11 20:40:43 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-11 20:40:43 (GMT) |
| commit | 6e4e14d98fe0868981f29701496d57a8223c5407 (patch) | |
| tree | d97f9422c02a791511267bf5af45071067d1c848 /Include/internal/pycore_opcode.h | |
| parent | 61f12b8ff7073064040ff0e6220150408d24829b (diff) | |
| download | cpython-6e4e14d98fe0868981f29701496d57a8223c5407.zip cpython-6e4e14d98fe0868981f29701496d57a8223c5407.tar.gz cpython-6e4e14d98fe0868981f29701496d57a8223c5407.tar.bz2 | |
GH-100923: Embed jump mask in `COMPARE_OP` oparg (GH-100924)
Diffstat (limited to 'Include/internal/pycore_opcode.h')
| -rw-r--r-- | Include/internal/pycore_opcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_opcode.h b/Include/internal/pycore_opcode.h index 8fdf121..5806d69 100644 --- a/Include/internal/pycore_opcode.h +++ b/Include/internal/pycore_opcode.h @@ -47,7 +47,7 @@ const uint8_t _PyOpcode_Caches[256] = { [FOR_ITER] = 1, [STORE_ATTR] = 4, [LOAD_ATTR] = 9, - [COMPARE_OP] = 2, + [COMPARE_OP] = 1, [LOAD_GLOBAL] = 5, [BINARY_OP] = 1, [CALL] = 4, |
