diff options
author | Guillaume Chatelet <gchatelet@google.com> | 2019-10-25 22:26:23 +0200 |
---|---|---|
committer | Guillaume Chatelet <gchatelet@google.com> | 2019-10-25 22:41:34 +0200 |
commit | e8a0a0904b2b144929312ac424626b3e026bf9fb (patch) | |
tree | 4cf92c40bfdf67a1f2f8fe44ca2ede43c5826266 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 03de2f84fc4acf06c719cd007b5459c9d4d0a20c (diff) | |
download | bcm5719-llvm-e8a0a0904b2b144929312ac424626b3e026bf9fb.tar.gz bcm5719-llvm-e8a0a0904b2b144929312ac424626b3e026bf9fb.zip |
[Alignment][NFC] Convert AllocaInst to MaybeAlign
Summary:
This is patch is part of a series to introduce an Alignment type.
See this thread for context: http://lists.llvm.org/pipermail/llvm-dev/2019-July/133851.html
See this patch for the introduction of the type: https://reviews.llvm.org/D64790
Reviewers: courbet
Reviewed By: courbet
Subscribers: hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D69301
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 15eead1de31..3dac550b45c 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -4761,7 +4761,7 @@ Error BitcodeReader::parseFunctionBody(Function *F) { const DataLayout &DL = TheModule->getDataLayout(); unsigned AS = DL.getAllocaAddrSpace(); - AllocaInst *AI = new AllocaInst(Ty, AS, Size, Align ? Align->value() : 0); + AllocaInst *AI = new AllocaInst(Ty, AS, Size, Align); AI->setUsedWithInAlloca(InAlloca); AI->setSwiftError(SwiftError); I = AI; |