Teach InlineFunction how to differentiate between multiple-value
[oota-llvm.git] / test / Transforms / DeadStoreElimination / alloca.ll
1 ; RUN: llvm-as < %s | opt -dse | llvm-dis | not grep DEAD
2
3 define void @test(i32* %Q) {
4         %P = alloca i32         ; <i32*> [#uses=1]
5         %DEAD = load i32* %Q            ; <i32> [#uses=1]
6         store i32 %DEAD, i32* %P
7         ret void
8 }
9