llvm-6502/test/Transforms/DeadStoreElimination/alloca.llx
2006-12-02 04:23:10 +00:00

9 lines
215 B
Plaintext

; RUN: llvm-upgrade < %s | llvm-as | 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
}