diff options
author | Guillaume Chatelet <gchatelet@google.com> | 2019-10-03 13:17:21 +0000 |
---|---|---|
committer | Guillaume Chatelet <gchatelet@google.com> | 2019-10-03 13:17:21 +0000 |
commit | d400d45150530297d7ea0c33aafbcb44ba90a0a1 (patch) | |
tree | e7eadfc5d79bcdff29d1fea27912ff2f524d1ab4 /llvm/lib/IR/Core.cpp | |
parent | 6079498c51b9144b4c42ec20f2d9320db61a6387 (diff) | |
download | bcm5719-llvm-d400d45150530297d7ea0c33aafbcb44ba90a0a1.tar.gz bcm5719-llvm-d400d45150530297d7ea0c33aafbcb44ba90a0a1.zip |
[Alignment][NFC] Remove StoreInst::setAlignment(unsigned)
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, bollu, jdoerfert
Subscribers: hiraditya, asbirlea, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D68268
llvm-svn: 373595
Diffstat (limited to 'llvm/lib/IR/Core.cpp')
-rw-r--r-- | llvm/lib/IR/Core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Core.cpp b/llvm/lib/IR/Core.cpp index a599a089987..c548c56211a 100644 --- a/llvm/lib/IR/Core.cpp +++ b/llvm/lib/IR/Core.cpp @@ -2014,7 +2014,7 @@ void LLVMSetAlignment(LLVMValueRef V, unsigned Bytes) { else if (LoadInst *LI = dyn_cast<LoadInst>(P)) LI->setAlignment(MaybeAlign(Bytes)); else if (StoreInst *SI = dyn_cast<StoreInst>(P)) - SI->setAlignment(Bytes); + SI->setAlignment(MaybeAlign(Bytes)); else llvm_unreachable( "only GlobalValue, AllocaInst, LoadInst and StoreInst have alignment"); |