summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/WebAssembly/non-executable-stack.ll
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@apple.com>2018-01-27 00:34:09 +0000
committerAkira Hatanaka <ahatanaka@apple.com>2018-01-27 00:34:09 +0000
commite5dbb64652a02c788437738685ff40ce7f469c58 (patch)
tree3a9dd078e8824bc23c32a2ebd5e127abd4e80051 /llvm/test/CodeGen/WebAssembly/non-executable-stack.ll
parent1edb905e823c5eabd3c934ef0129c5387bc3f9fb (diff)
downloadbcm5719-llvm-e5dbb64652a02c788437738685ff40ce7f469c58.tar.gz
bcm5719-llvm-e5dbb64652a02c788437738685ff40ce7f469c58.zip
[CodeGen] Use the non-virtual alignment when emitting the base
constructor. Previously, clang would emit an over-aligned (16-byte) store to initialize B::x in B's base constructor when compiling the following code: struct A { __attribute__((aligned(16))) double data1; }; struct B : public virtual A { B() : x(123) {} double a; int x; }; struct C : public virtual B {}; void test() { B b; C c; } This was happening because the code in IRGen that does member initialization was using the alignment of a complete object instead of the non-virtual alignment. This commit fixes the bug. rdar://problem/36382481 Differential Revision: https://reviews.llvm.org/D42521 llvm-svn: 323578
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/non-executable-stack.ll')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud