Another step moving away from the deprecated syntax of specifying pass pipeline in opt. Differential Revision: https://reviews.llvm.org/D119081
9 lines
229 B
LLVM
9 lines
229 B
LLVM
; RUN: opt < %s -passes=instcombine -S | grep "store volatile"
|
|
|
|
define void @test() {
|
|
%votf = alloca <4 x float> ; <<4 x float>*> [#uses=1]
|
|
store volatile <4 x float> zeroinitializer, <4 x float>* %votf, align 16
|
|
ret void
|
|
}
|
|
|