blob: c75a618d3d4af51913a4537217fa533cb599bdb0 [file] [log] [blame]
; RUN: llvm-as < %s | opt -dse | llvm-dis | not grep DEAD
void %test(int* %Q) {
%P = alloca int
%DEAD = load int* %Q
store int %DEAD, int* %P ;; Alloca goes out of scope, dead store.
ret void
}