diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-10-04 14:07:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 14:07:21 (GMT) |
commit | 1670d590fa6b817e0d3f091ea12aee9ae744875a (patch) | |
tree | 1856c19ebe15d60e7d3a30732161fb8832548180 /Python/compile.c | |
parent | b5499784ec0aa24c8f0d91f2317cc53b7743ada9 (diff) | |
download | cpython-1670d590fa6b817e0d3f091ea12aee9ae744875a.zip cpython-1670d590fa6b817e0d3f091ea12aee9ae744875a.tar.gz cpython-1670d590fa6b817e0d3f091ea12aee9ae744875a.tar.bz2 |
[3.10] bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720). (GH-28721)
(cherry picked from commit 252b7bcb236dc261f3af1275bc90f9a303d9648f)
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index b007859..97aa224 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -6619,7 +6619,7 @@ static int assemble_line_range(struct assembler *a) { int ldelta, bdelta; - bdelta = (a->a_offset - a->a_lineno_start) * 2; + bdelta = (a->a_offset - a->a_lineno_start) * sizeof(_Py_CODEUNIT); if (bdelta == 0) { return 1; } |