summaryrefslogtreecommitdiffstats
path: root/test/Transforms/DeadStoreElimination/simple.ll
blob: e89d3abfbd9d6927f7139e393539498fbab24de0 (plain)
1
2
3
4
5
6
7
8
9
; RUN: opt < %s -dse -S | not grep DEAD

define void @test(i32* %Q, i32* %P) {
        %DEAD = load i32* %Q            ; <i32> [#uses=1]
        store i32 %DEAD, i32* %P
        store i32 0, i32* %P
        ret void
}

OpenPOWER on IntegriCloud