diff options
Diffstat (limited to 'llvm/test/Transforms/InstCombine/2008-04-28-VolatileStore.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/2008-04-28-VolatileStore.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstCombine/2008-04-28-VolatileStore.ll b/llvm/test/Transforms/InstCombine/2008-04-28-VolatileStore.ll new file mode 100644 index 00000000000..9bfe7aa1414 --- /dev/null +++ b/llvm/test/Transforms/InstCombine/2008-04-28-VolatileStore.ll @@ -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 +} + |