blob: afcb5cb641187ad78e13e296c0b40d5b81f982a4 [file] [log] [blame]
; RUN: llvm-as < %s | opt -dse | llvm-dis | not grep DEAD
void %test(int* %Q, int* %P) {
%DEAD = load int* %Q
store int %DEAD, int* %P
free int* %P
ret void
}