mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-31 16:02:52 +01:00
baf0f69f9a
of the instruction. Note that this change affects the existing non-atomic load and store instructions; the parser now accepts both forms, and the change is noted in the release notes. llvm-svn: 137527
9 lines
222 B
LLVM
9 lines
222 B
LLVM
; RUN: opt < %s -instcombine -S | grep {store volatile}
|
|
|
|
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
|
|
}
|
|
|