diff options
author | Richard Osborne <richard@xmos.com> | 2012-09-18 09:31:44 +0000 |
---|---|---|
committer | Richard Osborne <richard@xmos.com> | 2012-09-18 09:31:44 +0000 |
commit | b68053e266168b195807def8f5459e30356b4b23 (patch) | |
tree | b157f834842e842c428464fb9582e6cf68194770 /llvm/lib/Transforms | |
parent | 848abbd236bc42b48b843b187f46a96244efe3f4 (diff) | |
download | bcm5719-llvm-b68053e266168b195807def8f5459e30356b4b23.tar.gz bcm5719-llvm-b68053e266168b195807def8f5459e30356b4b23.zip |
Fix instcombine to obey requested alignment when merging allocas.
llvm-svn: 164117
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp b/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp index 6ecb4c52c40..5b6cf4a4a83 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp @@ -246,12 +246,16 @@ Instruction *InstCombiner::visitAllocaInst(AllocaInst &AI) { return &AI; } + // If the alignment of the entry block alloca is 0 (unspecified), + // assign it the preferred alignment. + if (EntryAI->getAlignment() == 0) + EntryAI->setAlignment( + TD->getPrefTypeAlignment(EntryAI->getAllocatedType())); // Replace this zero-sized alloca with the one at the start of the entry // block after ensuring that the address will be aligned enough for both // types. - unsigned MaxAlign = - std::max(TD->getPrefTypeAlignment(EntryAI->getAllocatedType()), - TD->getPrefTypeAlignment(AI.getAllocatedType())); + unsigned MaxAlign = std::max(EntryAI->getAlignment(), + AI.getAlignment()); EntryAI->setAlignment(MaxAlign); if (AI.getType() != EntryAI->getType()) return new BitCastInst(EntryAI, AI.getType()); |