diff options
| author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-03-07 19:45:00 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-07 19:45:00 (GMT) |
| commit | f193631387bfee99a812e39b05d5b7e6384b57f5 (patch) | |
| tree | 31f161bd1e2f6469f32be8333705c82992486485 /Include/cpython | |
| parent | 105b9ac00174d7bcc653f9e9dc5052215e197c77 (diff) | |
| download | cpython-f193631387bfee99a812e39b05d5b7e6384b57f5.zip cpython-f193631387bfee99a812e39b05d5b7e6384b57f5.tar.gz cpython-f193631387bfee99a812e39b05d5b7e6384b57f5.tar.bz2 | |
bpo-46841: Use inline caching for calls (GH-31709)
Diffstat (limited to 'Include/cpython')
| -rw-r--r-- | Include/cpython/code.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cpython/code.h b/Include/cpython/code.h index 21f8fe7..f3e0761 100644 --- a/Include/cpython/code.h +++ b/Include/cpython/code.h @@ -105,7 +105,7 @@ struct PyCodeObject { /* Quickened instructions and cache, or NULL This should be treated as opaque by all code except the specializer and interpreter. */ - union _cache_or_instruction *co_quickened; + _Py_CODEUNIT *co_quickened; }; |
