diff options
author | Inada Naoki <songofacandy@gmail.com> | 2019-05-14 09:51:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-14 09:51:15 (GMT) |
commit | f0be4bbb9b3cee876249c23f2ae6f38f43fa7495 (patch) | |
tree | 778915b3612b9f9edbec3e2a6b1a399af3b1f6a8 /Misc | |
parent | c923c3449f825021b13521b2380e67ba35a36f55 (diff) | |
download | cpython-f0be4bbb9b3cee876249c23f2ae6f38f43fa7495.zip cpython-f0be4bbb9b3cee876249c23f2ae6f38f43fa7495.tar.gz cpython-f0be4bbb9b3cee876249c23f2ae6f38f43fa7495.tar.bz2 |
bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-04-16-11-52-21.bpo-27987.n2_DcQ.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-04-16-11-52-21.bpo-27987.n2_DcQ.rst b/Misc/NEWS.d/next/Core and Builtins/2019-04-16-11-52-21.bpo-27987.n2_DcQ.rst new file mode 100644 index 0000000..b0f32a5 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-04-16-11-52-21.bpo-27987.n2_DcQ.rst @@ -0,0 +1,3 @@ +pymalloc returns memory blocks aligned by 16 bytes, instead of 8 bytes, on +64-bit platforms to conform x86-64 ABI. Recent compilers assume this alignment +more often. Patch by Inada Naoki. |