X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / Transforms / DeadStoreElimination / alloca.ll
blobb6818eb3824f920898abc8c9120bc67742976b8b
1 ; RUN: opt < %s -dse -S | not grep DEAD
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