This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients benjamin.peterson, fweimer, gregory.p.smith, methane, miss-islington, nascheme, pitrou, skrah, tgrigg, twouters, vstinner
Date 2019-05-25.17:40:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558806017.21.0.26803352592.issue27987@roundup.psfhosted.org>
In-reply-to
Content
Here is what I've found for (32-bit) ARM:
- "long double" is 8 bytes long, so it's probably the same as "double"
(see http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dai0274b/index.html)
- the standard alignment for "double" is 8 bytes
(see http://infocenter.arm.com/help/topic/com.arm.doc.ihi0042d/IHI0042D_aapcs.pdf)

And on (32-bit) x86, it looks like the standard alignment for "long double" is 4 bytes:
https://www.codesynthesis.com/~boris/blog/2009/04/06/cxx-data-alignment-portability/

So I don't think there's anything to change on 32-bit Python builds *if* we only really care about ARM and x86 (which is restrictive, but using "long double" in C extension types is a bit of an exotic issue).
History
Date User Action Args
2019-05-25 17:40:17pitrousetrecipients: + pitrou, twouters, nascheme, gregory.p.smith, vstinner, benjamin.peterson, methane, skrah, fweimer, miss-islington, tgrigg
2019-05-25 17:40:17pitrousetmessageid: <1558806017.21.0.26803352592.issue27987@roundup.psfhosted.org>
2019-05-25 17:40:17pitroulinkissue27987 messages
2019-05-25 17:40:17pitroucreate