Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git] / test / Transforms / DeadStoreElimination / simple.ll
blobe89d3abfbd9d6927f7139e393539498fbab24de0
1 ; RUN: opt < %s -dse -S | not grep DEAD
3 define void @test(i32* %Q, i32* %P) {
4         %DEAD = load i32* %Q            ; <i32> [#uses=1]
5         store i32 %DEAD, i32* %P
6         store i32 0, i32* %P
7         ret void