forked from OSchip/llvm-project
don't delete the last store to an alloca if the store is volatile.
llvm-svn: 50390
This commit is contained in:
parent
5c88f7b1ad
commit
e331a65c79
|
@ -10311,7 +10311,7 @@ Instruction *InstCombiner::visitStoreInst(StoreInst &SI) {
|
|||
|
||||
// If the RHS is an alloca with a single use, zapify the store, making the
|
||||
// alloca dead.
|
||||
if (Ptr->hasOneUse()) {
|
||||
if (Ptr->hasOneUse() && !SI.isVolatile()) {
|
||||
if (isa<AllocaInst>(Ptr)) {
|
||||
EraseInstFromFunction(SI);
|
||||
++NumCombined;
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {volatile store}
|
||||
|
||||
define void @test() {
|
||||
%votf = alloca <4 x float> ; <<4 x float>*> [#uses=1]
|
||||
volatile store <4 x float> zeroinitializer, <4 x float>* %votf, align 16
|
||||
ret void
|
||||
}
|
||||
|
Loading…
Reference in New Issue