Try to work around grep's "Binary file (standard input) matches" complaints seen
[oota-llvm.git] / test / Transforms / DeadStoreElimination / alloca.ll
1 ; RUN: opt < %s -dse -S | 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