blob: 240cb085e9fcfb803ea2fb45042befc5f0243976 (
plain)
1
2
3
4
5
6
7
8
9
|
; RUN: opt %s -dse | llvm-dis | 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
}
|