commit | dd382ef8ec8a572f202999ca94ff292722f3d6f6 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Sat Feb 01 03:43:58 2014 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Sat Feb 01 03:43:58 2014 +0100 |
tree | b8252af52e0e02e2661598d3f0f9dc94c4ed2090 | |
parent | a17b6bb5fe6a3e12ef359cc4c214cf7a7785bd88 [diff] |
Issue #20354: Fix alignment issue in the tracemalloc module on 64-bit platforms. Bug seen on 64-bit Linux when using "make profile-opt". Only align the "frame_t" structure on 32-bit when Visual Studio is used. Before the alignment to 32-bit was applied to the whole file any compiler supporting "#pragma pack(4)" which includes GCC.